@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}
.reel {
  width: 15rem;
  height: 15rem;
  border-radius: 3.5rem;
  display: grid;
  place-items: center;
  font-size: 4rem;
  font-weight: 800;
  color: #0f1521;
  background: #ffffff;
  border: 1px solid rgba(6, 38, 44, 0.06);
}
#balance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0 2rem;
  border-radius: 3.5rem;
  background: #ffffff;
  color: #0f1521;
  border: 1px solid rgba(6, 38, 44, 0.06);
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}
.stone {
  border-radius: 50%;
  height: 6rem;
  margin-left: 1rem;
}
.betbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  gap: 1rem;
}
.bet-label {
  font-size: 3rem;
  font-weight: 800;
}
.bet-input {
  height: 6rem;
  border-radius: 3.5rem;
  border: 1px solid rgba(6, 38, 44, 0.06);
  background: #ffffff;
  color: #0f1521;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  padding: 0 1.6rem;
}
.bet-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}
.buttons {
  background: #ffffff;
  color: #0f1521;
  border: 1px solid rgba(6, 38, 44, 0.06);
  border-radius: 3.5rem;
  font-size: 2rem;
  font-weight: 800;
  padding: 1rem 2rem;
  cursor: pointer;
}
.buttons:hover {
  background: #848a8d;
}
#msg {
  width: 45%;
  min-height: 5rem;
  margin: 1rem auto 0;
  text-align: center;
  border: 1px solid rgba(6, 38, 44, 0.06);
  border-radius: 3.5rem;
  font-size: 2rem;
  font-weight: 800;
}
@keyframes nudge {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
.Throwing {
  animation: nudge 0.35s linear infinite;
}
