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

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

body {
  background-color: #000000a6;
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  height: auto; 
}

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

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  align-self: center; /* Center the button horizontally */
}
  @media (max-width: 575.98px) {
    h1 {
      font-size: 24px;
    }

    p {
      font-size: 14px;
    }
  }

  /* Small devices (phones, 576px and up) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    h1 {
      font-size: 28px;
    }

    p {
      font-size: 16px;
    }
  }

  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    h1 {
      font-size: 32px;
    }

    p {
      font-size: 18px;
    }
  }
