body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  flex-direction: column;
  background-color: rgb(26, 46, 46);
}

body h4 {
  text-align: center;
  color: white;
  font-family: cursive;
}

.container {
  text-align: center;
}

h1 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 100px;
  color: darkcyan;
  font-family: 'Courier New', Courier, monospace;
}

p {
  margin: 0;
  padding-bottom: 10px;
  font-size: 25px;
  font-family: cursive;
  font-weight: bolder;
  color: darkcyan;
}

.dice {
  padding: 0 20px;
  padding-bottom: 100px;
  display: inline-block;
  flex-direction: row;
  justify-content: center;
  gap: 10000px;
}

img {
  height: 150px;
}

footer {
  font-family: cursive;
  text-align: center;
  color: white;
}

@media (max-width: 950px) {

  body {
    height: 100vh;
  }

  h1 {
    margin-top: 20px;
    font-size: 50px;
  }

  p {
    font-size: 10px;
    ;
  }

  img {
    min-height: 70px;
  }

  .dice {
    display: flexbox;
    flex-direction: column;
    padding-bottom: 10px;

  }

  footer {
    font-size: 12px;
    margin-top: 50px;
    padding-bottom: 30px;
  }
}

@media (max-width: 320px) {
  img {
    height: 10px;
  }

  p {
    font-size: 12px;
  }

  h1 {
    font-size: 30px;
  }

  footer {
    font-size: 12px;

  }
}