.container {
  width: 70%;
  margin: auto;
  text-align: center;
}
#heading{
  /* font-family: 'Indie Flower', cursive; */
  font-size: 7rem;
  color: #4ECCA3;
  text-decoration: underline;
}
.dice {
  text-align: center;
  display: inline-block;

}
.roll-button{
  text-align: center;
  margin: auto;
  padding: 30px;
  font-family: 'Lobster',cursive;
  }

body {
  background-color: #000000;
}
a:link, a:visited,a:active{
  color: #EEEEEE;
}
h1 {
  margin: auto;
  font-family: 'Lobster', cursive;
  text-shadow: 5px 0 #232931;
  font-size: 5rem;
  color: #4ECCA3;
  /* padding: 0 350px; */
}

p {
  font-size: 2rem;
  color: #4ECCA3;
  font-family: 'Indie Flower', cursive;
  text-decoration: underline;
}

img {
  width: 80%;
}

.imgShake{
  animation: tilt-shaking 0.3s infinite;
}

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

}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
