body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    backface-visibility: hidden;
}

#overlay {
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0.08;
}

#scene {
    padding: 0;
    margin: 0;
    width: 110%;
    height: 100vh;
    overflow: hidden;
    top: -5%;
    left: -5%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

main {
    width: 100%;
    height: 100vh;
    overflow: hidden;    
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 101;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    text-align: center;
}

.wrapper img {
  width: 350px;
  height: auto;
}

.layer {
    width: 110%;
    height: 120vh;
    /* overflow: hidden; */
}

.layer2 {
    background-image: url(../images/ly2_01.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 2%;
    top: 10%;
}

.layer1 {
    background-image: url(../images/ly1_01.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    top: -3%;
}
@media (max-width:1000px) {

.layer1{display: none;}
.layer2{display: none;}
#scene {
   
    width: 100%;
   
    top: 0%;
    left: 0%;
    
}
}
@media (max-width:800px) {
    #scene {
   
    width: 110%;
    height: 90vh;
 
}
    .layer2 {
        /* background-size: cover;
        background-position: center;
        position: absolute;
        width: 167%;
        height: 77vh;
        left: -69%;
        top: 27%; */
        display: none;
    }
    
    .layer1 {
        /* background-position: center;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 115%;
        left: -5%;
        top: -1%; */
        display: none;
    }    
    
    .wrapper img {
        width: 180px;
        height: auto;
    }
}
@media (max-width:560px) {
    #scene {height: 60vh;}
}
@media (max-width:460px) {
    #scene {height: 55vh;}
}