body{
  background-color: #011f3f;
  color: #fef2be;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Press Start 2P', cursive, serif;
}
h1{
  unicode-bidi: isolate;
  font-family: serif;
  text-align: center;
  padding-inline: 10px;
}

#bestStreak{
  text-align: center;
}
  #bestStreak span{
    color: rgb(251, 175, 76);
    font-weight: bold;
    font-size: 20px;
  }

.gameOptions{
  display: grid;
  grid-template-columns: 30% 30%;
  gap: 10%;
  justify-content: center;
}

.game{
  display: grid;
  grid-template-columns: 1fr 1fr;
  display: none;

  margin-top: 50px;
}

.square{
  width: 180px;
  height: 180px;
  margin-inline: 10px;
  margin-bottom: 20px;

  border: 8px solid black;
  border-radius: 15px;
}
button:hover{
  cursor: pointer;
  opacity: 0.8;
}
button:active{
  background-color: gray;
  box-shadow: 0px 0px 40px gray;
}

.green{background-color: green;}
.red{background-color: rgb(255, 0, 0);}
.yellow{background-color: yellow;}
.blue{background-color: blue;}

#levelUp, #gameOver{
  position: relative;
  font-size: 30px;
  margin-top: 70px;
}
#gameOver{
  text-transform: uppercase;
  color: rgb(156, 108, 108);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.205);
  border-radius: 15px;
  font-weight: bold;
}

@media screen and (max-width: 500px){
  .square{
    width: 40vw;
    height: 40vw;
  }
}