body {
  font-family: monospace;
}
body header {
  display: flex;
  justify-content: center;
  gap: 100px;
}
body header .actions {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 29%;
}
body header .actions button {
  padding: 7px 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.52);
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-family: monospace;
  color: rgba(0, 0, 0, 0.69);
  transition: all 0.1s;
}
body header .actions button:hover {
  cursor: pointer;
  color: rgb(2, 201, 9);
  border-color: rgb(3, 255, 11);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.238);
  transform: translateY(-2px);
}
body header .actions button:active {
  transform: translateY(0);
}
body header .actions .payment-info {
  position: absolute;
  bottom: -15px;
  left: 45%;
  font-size: 15px;
  color: red;
  opacity: 0;
  width: 100px;
  font-weight: 600;
}
body header .actions .opacity {
  animation: opacityInfo 1s;
}
@keyframes opacityInfo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(25px);
  }
}
body header .actions .info {
  position: absolute;
  top: -50px;
  color: crimson;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
body header .actions .dice h3 {
  text-align: center;
  text-transform: uppercase;
}
body header .actions .dice .dice-result {
  position: absolute;
  top: 100px;
  left: 20px;
}
body header .actions .dice .dice-result img {
  width: 50px;
  height: 50px;
  margin: 10px;
}
body .game {
  display: flex;
  gap: 50px;
  width: 90%;
  margin: 40px auto;
}
body .game .table {
  display: grid;
  width: 1000px;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  margin-left: 5%;
}
body .game .table .cell {
  border: 1px solid grey;
  width: 120px;
  height: 150px;
  position: relative;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
body .game .table .cell .price-box {
  width: 100%;
  height: 25px;
  text-align: center;
  color: rgb(0, 0, 0);
}
body .game .table .cell .go1 {
  font-size: 32px;
  text-align: center;
  margin-top: -15px;
}
body .game .table .cell .go {
  font-size: 16px;
  text-align: center;
  margin-top: 60px;
}
body .game .table .cell .tax1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
}
body .game .table .cell .tax {
  text-align: center;
  font-size: 16px;
}
body .game .bought-table {
  text-align: center;
  border: 1px solid grey;
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
}
body .game .bought-table .player-money {
  border-bottom: 1px solid grey;
  padding: 15px;
  background-color: rgb(121, 226, 118);
  text-align: center;
  font-size: 18px;
}
body .game .bought-table h2 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}
body .game .bought-table .bought-streets {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px;
  justify-content: center;
}
body .game .bought-table .bought-streets .each-street {
  width: 170px;
  padding: 20px;
}
body .game .player {
  height: 40px;
  width: 40px;
  background-color: rgb(169, 254, 0);
  border: 1px solid rgba(0, 255, 179, 0.6901960784);
  border-radius: 50%;
  margin-left: 50%;
  transform: translate(-50%, 50%);
  position: absolute;
  top: 30%;
  left: 0;
}

.disable {
  pointer-events: none;
}

.shake {
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}/*# sourceMappingURL=style.css.map */