* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #37323e;
  display: flex;
  justify-content: center;
}
.header {
  margin: 33vh 0 28vh 0;
  height: 40vh;
  justify-content: center;
}
.winnerMsg {
  display: block;
  font-size: 5vh;
  text-align: center;
  color: #de9e36;
  display: block;
}
.hide {
  display: none;
}
h1 {
  color: #de9e36;
  text-align: center;
  font-size: 5vh;
  margin-bottom: 2vh;
}
.boxes {
  height: 80vh;
  width: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1vh;
}

.box {
  height: 25vh;
  width: 25vh;
  border: none;
  border-radius: 10%;
  font-size: 12vh;
  background-color: #deb841;
  color: #6d6a75;
  box-shadow: 0 4px 8px 0 rgba(222, 158, 54, 0.19),
    0 6px 20px 0 rgba(222, 158, 54, 0.19);
}
.reset {
  display: flex;
  justify-content: center;
}
.resetBtn {
  margin-top: 2vh;
  height: 7vh;
  width: 40vh;
  font-size: 5vh;
  background-color: #6d6a75;
  border-radius: 9px;
  color: #bfbdc1;
  display: block;
}
