* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  background-color: #8af3ff;
text-align: center;
}
.msg-container{
  height: 100vmin;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap:2rem ;
}
.hide{
  display: none;
}
.hide_2{
  display: none;
}
.msg{
  color: green;
  font-size: 8vmin;
}
.Draw-msg{
  color: red;
  font-size: 8vmin;
}
#newgame-btn{
  padding: 1rem;
font-size: 1.25rem;
background-color: yellow;
border-radius: 1.8rem;
border: none;
box-shadow: 0  0 1rem rgba(0, 0, 0, 0.3);
}
.container {
  height: 70vh;
  display: flex;
  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 {
  background-color: #FFF1D0;
  height: 18vmin;
  width: 18vmin;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  font-size: 14vmin;
  color: red;
  display: flex;
  justify-content: center;
}

#reset-btn{
padding: 1rem;
font-size: 1.25rem;
background-color: yellow;
border-radius: 1.8rem;
border: none;
box-shadow: 0  0 1rem rgba(0, 0, 0, 0.3);
}
