.container {
  width: 70%;
  margin: auto;
  text-align: center;
}

.dice {
  text-align: center;
  display: inline-block;

}

body {
  background-color: #393E46;
}

h1 {
  margin: 30px;
  font-family: 'Lobster', cursive;
  text-shadow: 5px 0 #232931;
  font-size: 8rem;
  color: #4ECCA3;
}

p {
  font-size: 2rem;
  color: #4ECCA3;
  font-family: 'Indie Flower', cursive;
}

img {
  width: 80%;
}

footer {
  margin-top: 5%;
  color: #EEEEEE;
  text-align: center;
  font-family: 'Indie Flower', cursive;

}











/* Add to your styles.css for the new button */
#rollButton {
    background-color: #4ECCA3; /* Matches your h1 color */
    color: #393E46; /* Matches your body background color */
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-family: 'Lobster', cursive; /* Matches h1 font */
    border-radius: 8px;
    cursor: pointer; /* Indicates it's clickable */
    margin-top: 20px; /* Space from the h1 */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

#rollButton:hover {
    background-color: #34a07a; /* A slightly darker shade on hover */
}