body {
    margin: 0;
    padding: 0;
}

#adContainer {
    width: 100%;
    height: 100vh;
    max-width: 600px;
    position: absolute;
    overflow: hidden;
    display: block;
    background: url('loading.png') center center no-repeat black;
}

#contents {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('bg-home.jpg') center center / cover;
    overflow: hidden;
    visibility: hidden;
}

img {
    max-width: 100%;
    overflow: hidden;
    display: block;
}

#close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    z-index: 1000;
    background-image: url('close.png');
}

.exit {
    width: 75%;
    display: block;
    position: absolute;
    bottom: 5vh;
    transform: translateY(30vh);
}

/* LANDSCAPE CONTROL */
#rotate {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url('rotation.png') center center no-repeat black;
    display: none;
}


@media only screen and (orientation: landscape) {
    #adContainer {max-width: 100%;}
    #rotate {display: block;}
  }

/* START STYLING HERE */
/* @import url('video.css');
@import url('carousel.css'); */

.flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.w100 {
    width: 100%;
}

#intro, #q2 {
    width: 100%;
    height: 100%;
    position: absolute;
}

#logo {
    width: 25%;
    position: absolute;
    top: 3vh;
    transform: translateY(-50vh);
}

#btns {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.btn {
    width: 45%;
    margin: 2%;    
    transform: scale(0);
}

#introTxt, #q2Text {
    transform: scale(0);
}

#btns2 {
    width: 75%;
}

.btn2 {
    width: 100%;
    margin-top: 5%;
    transform: scale(0);
}


.promoPage {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(0);
}

.prodImg {
    width: 60%;
    transform: scale(0);
}

#promoPage0 {
    background: url('bg-prod-ps.jpg') center center / cover;
}

#promoPage1 {
    background: url('bg-prod-xbox.jpg') center center / cover;
}

#promoPage2 {
    background: url('bg-prod-pc.jpg') center center / cover;
}