* {
  margin: 0;
  padding: 0;
}
body {
  background-color: cyan;
  text-align: center;
}
.container {
  height: 70vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.game {
  height: 60vh;
  width: 60vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5vmin;
}
.box {
  height: 19vmin;
  width: 19vmin;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.7);
  font-size: 8vmin;
  color: blue;
  background-color: #ffffc7;
}
#reset,
#new {
  padding: 0.7rem;
  font-size: 0.8rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.7);
  background-color: blue;
  color: white;
}
#msg {
  color: purple;
  font-size: 6vmin;
}
.msg-container {
  height: 100vmin;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}

.hide {
  display: none;
}
