* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: black;
    color: #666;
    font-family: sans-serif;
    font-size: 16px;
    overscroll-behavior: none;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
    width: 700px;
}
/*
#container {
    width: 90vw;
    height: 90vh;
}
*/
#title {
    text-align: center;
    width: 100%;
    padding: 10px 0 10px 0;
}

#box {
    position: relative;
    width: 100%;
    height: 100%;
    background: #666;
    overflow: hidden;
    /*cursor: none;*/
    border: 1px solid #333;
    
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-user-select: none;
}

.shadow__wall {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}

#shadow__text {
    position: absolute;
    width: 100%;
    margin: 0;
    color: #999;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.shadow__box {
    position: absolute;
    background: #999;
    top: 4.5rem;
    height: 50vh;
}

#shadow__box--back {
    left: -5%;
    width: 110%;
}

#shadow__box--front {
    left: 0;
    width: 100%;
}

#shadow__spot {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: -webkit-gradient(radial, center center, 0, center center, 250, from(rgba(0,0,0,0)), to(rgba(0,0,0,1)));
}
