* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(
      48deg,
      rgba(147, 214, 83, 0.24),
      rgba(228, 214, 17, 0.391)
    ),
    url(../images/bg_img.jpg);
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.gameTitle {
  margin-bottom: 3rem;
  color: yellow;
  font-weight: bold;
}

.gameArea {
  display: grid;
  grid-template-columns: repeat(3, auto);
  height: 400px;
  width: 300px;
  background: white;
  border: 3px dotted black;
}
.gameArea .gameBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  width: 100px;
  font-size: 5rem;
  border: 2px dotted black;
  color: black;
}

.gamePlayer {
  color: yellow;
  padding: 3rem 0;
}

.gameResert {
  border: none !important;
  padding: 2rem 4rem;
  background: #d2d826;
  color: red;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.gameResert:hover {
  background: #000;
  color: white;
} /*# sourceMappingURL=style.css.map */
