
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #f4f4f4;
  padding: 40px;
}

h1 {
  margin-bottom: 30px;
}

#dice-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.die {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: #333;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #555;
}

#prompt-box {
  margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
}
