section {
    width: 100vw;
    height: 1000px;
    background-color: #666666;
    display: flex;
}

.box {
    margin-left: auto;
    margin-right: auto;
}

.acc {
    background-color: #eeee22;
    color: #2f2222;
    display: block;
    padding: 15px 264px;
    text-align: center;
    border: 1px solid #2f2222;
    outline: none;


    transition: 0.8s;
}

.acc:hover {
    background-color: #f22222;
    cursor: pointer;
}

h1 {
    text-align: center;
}

.text {
    display: none;
    text-align: center;
    border: 1px solid #2f2222;
    outline: none;
    width: 650px;
    background-color: #3333ff;
    color: #ffffff
}

.show {
    display: block;
}

.css {
    text-shadow: 2px 2px 2px silver,
        -2px 2px 2px silver;
    color: white;
    transition: all 1s;
}

.css:hover {
    text-shadow: -2px -2px 2px silver,
        2px -2px 2px silver;
    color: white;
    cursor: crosshair
}


/*------------------------*/
#area {
    width: 250px;
    margin: auto;
    text-align: center;
}

button {
	position: relative;
    border: none;
    top: -100px;
    padding: 20px 40px;
    background: #0fdd0f;
    color: black;
}

button:hover {
    cursor: pointer;
    color: #0fdd0f;
    background: black;
}

#glasses {
    width: 186px;
    position: relative;
    left: -25px;
    animation: glassesDown 3s linear forwards paused;
    z-index: 5;
}

#logo {
	width: 400px;
    height: 515px;
    position: relative;
    top: -155px;
    left: -71px;
}

@keyframes glassesDown {
    0% {
        top: -300px;
    }

    100% {
        top: 100px;
    }
}