/* General Body Styles */
body {
  background-color: #1e1e1e;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #282828;
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Header and Text */
h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #ffdd57;
}

h2 {
  font-size: 1.5rem;
  color: #d1d1d1;
  margin-bottom: 20px;
}

h3 {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #ffdd57;
}

/* Dice Container */
.dice-container {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.dice img {
  width: 100px;
  transition: transform 0.4s ease-in-out;
}

.dice img.rolling {
  transform: rotate(360deg);
}

/* Button */
button {
  background-color: #ffdd57;
  color: #282828;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ffaa00;
}

/* History Section */
.history {
  margin-top: 40px;
  color: #d1d1d1;
}

#historyList {
  list-style: none;
  padding: 0;
}

#historyList li {
  background-color: #383838;
  padding: 10px;
  margin: 5px 0;
  border-radius: 8px;
}

/* Footer */
footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #a1a1a1;
}
