*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #ACC8E5;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container{
  height: 60vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.game{
  height: 60vmin;
  width: 60vmin;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5vmin;
}

.box{
  height: 18vmin;
  width: 18vmin;
  border-radius: 2rem;
  border: none;
  box-shadow: 0 0 1rem rgba(0,0,0,0.4);
  font-size: 8vmin;
  color: rgb(226, 43, 122);
  background-color: #ffffc7;
  cursor: pointer;
}

.box:hover{
  transform: scale(1.05);
  transition: 0.2s;
}

#reset-btn, #new-btn{
  padding: 1rem;
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 0 1rem rgba(60, 47, 47, 0.4);
  font-size: 1rem;
  background-color: #0e4e66;
  color: #fff;
  cursor: pointer;
}

#msg{
  color: #8e1515;
  font-size: 6vmin;
}

.msg-container{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.hide{
  display: none;
}

.scoreboard{
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0e4e66;
  margin-top: 10px;
}

#turn{
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #8e1515;
}

#won-img{
  width: 250px;
  max-width: 80%;
  border-radius: 1rem;
}