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

.dice-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.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%;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

button {
  background-color: #4ecca3;
  color: #393e46;
  border: none;
  padding: 20px 40px;
  font-size: 2rem;
  font-family: "Indie Flower", cursive;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

footer {
  margin-top: 5%;
  color: #eeeeee;
  text-align: center;
  font-family: "Indie Flower", cursive;
  font-size: 2rem;
}
