* {
  margin: 0;
  padding: 0;
}

main {
  position: relative;
  top: 5px;
}

body {
  background-color: rgb(102, 133, 39);
  text-align: center;
}

.container {
  height: 70vmin;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vmin;
}

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

.box {
  height: 18vmin;
  width: 18vmin;
  font-size: 9vmin;
  border-radius: 10%;
  border: none;
  background-color: rgb(248, 248, 210);
  color: rgb(148, 51, 51);
}

.btn {
  padding: 1vmin;
  font-size: 3vmin;
  font-weight: 500;
  background-color: rgb(52, 70, 40);
  color: #fff;
  border-radius: 10%;
}

.msg-container {
  font-size: 5vmin;
  color: rgb(248, 248, 210);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .border {
  border: 2px solid black;
} */

.reset-con {
  display: flex;
  justify-content: center;
  gap: 2vmin;
  flex-direction: row;
}

th {
  font-size: 6vmin;
  color: rgb(224, 215, 81);
}

td {
  color: #fff;
  font-size: 4vmin;
}

.point-btn {
  position: relative;
  top: 35vmin;
}

@media (min-width: 50px) and (max-width: 1286px) {
  .box {
    height: 9vmin;
    width: 9vmin;
    font-size: 4.5vmin;
  }

  .game {
    height: 35vmin;
    width: 35vmin;
  }

  .container {
    height: 45vmin;
  }

  .btn {
    padding: 1vmin;
    font-size: 2vmin;
  }

  th {
    font-size: 4.5vmin;
  }

  td {
    font-size: 3.5vmin;
  }
  .point-btn {
    position: relative;
    top: 18vmin;
  }
}
