.game-over__background{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0,0.7);
  backdrop-filter: blur(2pxpx);

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;

}

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

  /* SET ON JavaScript // Following Canvas Width */
  width: 60vw; 
  height: 80vh;

  background: #FFFFFF40;
  border-radius: 10px;

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

.game-over__images{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  margin-bottom: 2rem;
}

.game-over__image{
  width: 5rem;
  display: block;
/*   filter: grayscale(1); */
}

.game-over__tittle{
  font-size: 4rem;


  -webkit-text-fill-color: white;
  -webkit-text-stroke: 4px;
  -webkit-text-stroke-color: var(--blue);

  text-shadow: var(--blue) 0px 0px 10px;
}

.game-over__underTittle{
  display: none;
  margin-top: 2rem;
  color: white;
  text-align: center;
  width: 90%;
  font-size: 1.3rem;
  line-height: 1.6rem;
}

.game-over__underTittle strong{
  -webkit-text-fill-color: red;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: white;
}

.game-over__timer{
  font-size: 4rem;

  -webkit-text-fill-color: white;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: black;

  text-shadow: rgba(0,0,0,1) 0px 0px 10px;

  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.game-over__subtitle{
  font-size: 2.5rem;

  -webkit-text-fill-color: white;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: var(--blue);

  text-shadow: rgba(0,0,0,1) 0px 0px 10px;

  margin-bottom: 1rem;
}

.game-over__options{
  display: flex;
  gap: 2rem;
  font-size: 2rem;
}

.game-over__yes, .game-over__no{
  cursor: pointer;

  -webkit-text-fill-color: white;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: black;

  text-shadow: rgba(0,0,0,1) 0px 0px 10px;
} 

.game-over__yes:hover{
  -webkit-text-fill-color: var(--yellow);
}

.game-over__no:hover{
  -webkit-text-fill-color: red;
}