/*!***************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/game.css ***!
  \***************************************************************************************************/
.canvas-container {
    margin-top: 10vh;
    display: none;
    justify-content: center;
    align-items: center;
}

/* #game-canvas {
    padding-bottom: 20vh;
}   */





/*!***************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/page.css ***!
  \***************************************************************************************************/
.outer-container {
    height: 100vh;
    width: 100vw;
    background-color: black;
}

#mute-button {
    display: float;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255,255,255,0);
    border: none;
}

#mute-button:focus {
    outline: none;
    box-shadow: none;
  }


.background-container {
    background-image: url('../images/mainPage/openingPageBackground.jpg') ;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 6s;
    transform-origin: 51% 15vh;

}

#enter-checkbox {
    position:absolute;
    opacity: 0%;
}
#enter-checkbox:checked + div  {
    /* width: 240%;
    height: 240%; */
    transform: scale(40);
    transform-origin: 51% 25vh;
}

.click-container {
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20vh;
    animation-duration: 5s;
    animation-name: fade-in
}

@keyframes fade-in {
    0%   {opacity: 0%;}
    50%  {opacity: 0%;}
    60%  {opacity: 35%;}
    75%  {opacity: 65%;}
    100% {opacity: 100%;}
  }


.enter-sign {
    height: auto;
    width: auto;
    max-width: 30vw;
    max-width: 30vw;
}

.click-here-sign {
    height: auto;
    width: auto;
    max-width: 30vw;
    max-width: 30vw;
}

.arcade-open-sign {
    height: auto;
    width: auto;
    max-width: 15vw;
    max-width: 15vw;
    justify-self: space-between;
    animation-duration: 2s;
    animation-name: roll-in;
}

  
@keyframes roll-in {
    from {
      margin-top: -40%;
      width: 300%;
    }
  
    to {
      margin-top: 0%;
      width: 100%;
    }
}

#github-link img{
    position: absolute;
    display: float;
    width: 50px;
    height: auto;
    bottom: .4vh;
    left: 2vw;
    opacity: 50%;
    animation-duration: 2s;
    animation-name: slide-in;
}

@keyframes slide-in {
    from {
        left: -5vh;
        bottom: .4vh;
    }

    to {
        left: 2vW;
        bottom: .4vh;

    }
}


/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/

