.home-page__background{
  display: flex;
  justify-content: center;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  background-color: rgb(0, 0, 0,0.7);
  backdrop-filter: blur(2pxpx);

}

.home-page__container{
  background-color: #FFFFFF80;
  position: absolute;
  top: 5vh;
  border-radius: 10px;

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


  width: 90vw;
  height: 80vh;
}

.home-page__image__logo{
  display: block;
  width: 40rem;
}

.home-page__options{
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
}

.home-page__options__button{
  
  background-color: var(--yellow);
  padding: 1rem 1.5rem;
  border: solid black 1px;
  border-radius: 10px;

  font-size: 2rem;
  text-transform: uppercase;

  font-family: 'Press Start 2P', cursive;
  
  color: #74531d;
  /* 
   -webkit-text-fill-color: #74531d;
   -webkit-text-stroke: 1px;
   -webkit-text-stroke-color: black;  */
   
}
  
.home-page__options__button:hover{
  -webkit-text-fill-color: red;
  cursor: pointer;
}



/* INSTRUCTIONS */
.instructions__background{
  display: flex;
  justify-content: center;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  background-color: rgb(0, 0, 0,0.7);
  backdrop-filter: blur(2pxpx);

  display: none;
}



.instructions__container{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  
  height: calc(100vh - 4rem);

  color: white;
  font-family: 'Press Start 2P', cursive;
  text-transform: uppercase;

  
  background-color: #FFFFFF80;
  
  
  position: absolute;
  top: 5vh;
  border-radius: 10px;
  width: 90vw;
  height: 80vh;


}

.instructions__container strong{
  color: var(--yellow);
}

.instructions__header{
  box-sizing: border-box;
  height: 15%;

  -webkit-text-fill-color: white;
  -webkit-text-stroke: 3px;
  -webkit-text-stroke-color: black;  
  
}

.instructions__tittle{
  display: inline-block;
  font-size: 5rem;
  vertical-align: middle;
}

.instructions__tittle__image{
  display: inline-block;
  height: 7rem;
  vertical-align: middle;
  margin-left: 2rem;
}

.instructions__keyboard__instructions__container{
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 2rem;

  height: 35%;
}

.instructions__keyboard__container, .instructions__footer__start__container{
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-color: var(--blue);
  width: 30%;
  text-align: center;
  padding: .5rem;

  border-radius: 10px;
  
}

.instructions__keyboard__tittle, .instructions__footer__start__tittle{
  margin: auto;
  line-height: 1.5rem;
  font-size: 1.2rem;
  padding-bottom: .3rem;
}

.instructions__keyboard__innerContainer, .instructions__footer__start__innerContainer{
  background-color: var(--yellow);
  width: 100%;
  height: 75%;
  border: solid white 6px;
  display: flex;
  align-items: center;


  border-radius: 10px;
}


.instructions__keyboard__image{
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
}

.arrowKeysImage{
  height: 90%;
  width: auto;
}

.instructions__footer__start__image{
  display: block;
  height: 100%;
  width: auto;
  margin: auto;
  cursor: pointer;

  transition: .3s;
}

.instructions__footer__start__image:hover{
  height: 90%;
}

.instructions__footer__container{
  display: flex;
  width: 100%;
  justify-content: space-around;


  height: 27%;
}

.instructions__footer__info__container{
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding-left: 2rem;

  width: 57%;


  border-radius: 10px;
}




.instructions__footer__start__container{
  width: 25%;
}

@media screen and (max-width: 1200px) {
  .instructions__tittle{
    font-size: 4rem;
  }
  .instructions__tittle__image{
    height: 6rem;
  }
  .instructions__footer__info__container{
    width: 63%;
  }
  .instructions__keyboard__tittle, .instructions__footer__info__text, .instructions__footer__start__tittle{
    font-size: .9rem;
  }
  .instructions__footer__start__innerContainer{
    height: 60%;
  }
}