/*body {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: arial;
}*/

#title {
    position: relative;
    padding: 37px 0px 24px 0px;
    /*left:128px;*/
}

#thank-you {
        color: black;
    font-size: 24px;
    /* margin-left: 47%; */
    margin: auto;
    margin-top: 20%;
    /* top: 27%; */
    position: relative;

}

.animate-focus{
      -webkit-animation: focus 5s;
}

#scene2 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.allscenes {
    position: absolute;
    width: 100%;
    height: 100%;
}

#tunnel {
    position: absolute;
    width: 100%;
    height: 100%;
}

#tunnel-vid {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 100;
}

@-webkit-keyframes focus {
    from {
          -webkit-filter: blur(10px);
    }
    to {
          -webkit-filter: blur(0px);
    }
  }

#title-bottom {
    position: relative;
    top: 90%;
}

#full-intro{
    position: absolute;
    width: 100%;
    height: 100%;
}

#intro {
    text-align: center;
    height: 510px;
    /*background-color: black;*/
    background: rgba(0, 0, 0, .5);
    position: relative;
    width: 60%;
    max-width: 800px;
    margin: auto;
top: 15%;

}

#intro-inside {
    position: relative;
    /*width:100%;*/
    height: 73%;
    width: 90%;
    left: 5%;
    top: 5%;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    padding: -20px;
    font-size: 24px;
    color: #a39987;
}

.dropshadow {
    /*box-shadow: 1px 1px;*/
    position: absolute;
    -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
    filter: url(#drop-shadow);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
    filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
}

#next-button {
    width: 50px;
    height: 50px;
    color: red;
    position: relative;
    left: 50%;
    top: 3%;
    background-repeat: none;
    background-image: url("../assets/brain.svg");
}

#next-button: hover{
  cursor: pointer;
}

#next-button:hover{
  cursor: pointer;
}

#head {
    width: 400px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -57px;
}

#headphones-recommended {
    display: block;
    position: relative;
    left: 14%;
    top: -44px;
    /*box-shadow: 10px 10px 5px #888888;*/
}

#headphones {
    width: 36px;
    height: 45px;
    /*left: 20%;*/
    top: 20%;
    margin-top: 50px;
    display: block;
    position: relative;
    background-image: url("../assets/headphones.svg");
    background-repeat: none;
    /*box-shadow: 10px 10px 5px #888888;*/
}

#credits {
    color: black;
    -webkit-animation: focus 4s;
    text-align: center;
     font-size: 24px;

}

.hovering {
    animation: hover 2s ease-in-out 0s infinite;
}

@keyframes hover {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(7px);
    }
    100% {
        transform: translateY(0px);
    }
}

p {
    /*color: white;*/
    position: relative;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: grey;
    margin: 0;
    overflow: hidden;
    font-family: "brandon-grotesque", sans-serif;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#instructions {
    font-size: 30px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

#scene5 {
    /*display: none;*/
    width: 100%;
    height: 100%;
    position: absolute;
    animation-name: backgroundFade;
    animation-duration: 7s;
    animation-iteration-count: 1;
    z-index: 100;
    background: white;
}

@keyframes backgroundFade {
    /*0% {opacity:0;}*/
    /*50% {opacity:1;}*/
    /*100% {opacity:1;}*/
    from {
        background: rgba(200, 4, 4, 0);
    }
    to {
        background: rgba(255, 255, 255, 1);
    }
}
