.container {
  width: 70%;
  margin: auto;
  text-align: center;
}
.flex{
  display: flex;
  width: auto;
  justify-content: center;
  flex-wrap: wrap;

}


.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;
  animation: color 5s infinite;

}

@keyframes color {
  0% { color: #4ECCA3; }
  25% { color: white; }
  50% { color: red; }
  100% { 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;

}

button{
  border: none;
  width: 8rem;
  height: 4rem;
  border-radius: 2rem;
  box-shadow: inset 0 0 1.5rem 0.3rem;
  background-color: #d7ffdd;
  /* position: relative;
  left: 75rem;
  top: 3rem; */
  font-family: 'Lobster', cursive;
  text-shadow: 2px 0 #232931;
  font-size: 3rem;
  text-align: center;
  
}
button:hover{
  cursor:pointer;
}
@media only screen and (max-width:800px) {
  h1{
    font-size: 3rem;
  }
  
  } 
