body {
  font-family: sans-serif;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px;
}
h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.dice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#dice {
  font-size: 100px;
  margin: 30px;
  transition: transform 0.5s ease;
}
button {
  background: #00bf63;
  color: white;
  padding: 12px 24px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.result {
  margin-top: 20px;
  font-size: 20px;
}
