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

.dice-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.dice {
  text-align: center;
  display: inline-block;
  margin: 10px;
}

body {
  background-color: #FFEFC8;
}

h1 {
  margin: 30px;
  font-family: 'Lobster', cursive;
  text-shadow: 2px 0 #B8D576;
  color: #FFD95F;
  text-align: center;
  font-size: clamp(4rem, 8vw, 10rem);
  word-break: break-word;
}

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

img {
  width: 80%;
}

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

a {
  color: #D70654;
}

#rollButton {
  background-color: #D70654;
  color: #FFEFC8;
  font-size: 2rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.input-group input {
  font-family: 'Indie Flower', cursive;
  font-size: 1.5rem;
  color: #D70654;
  background-color: #FFEFC8;
  border: 2px solid #B8D576;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  h1 {
    font-size: 3rem;
  }

  img {
    width: 50%;
  }
}