/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
/* Music Review Page */
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
#rotAte  img {
  display: block;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}
.animated {
  animation-duration: 8s;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
@keyframes rotating {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.rotating {
  animation: rotating 12s linear infinite;
}

/* Drunk Text - Start */
.littledrunk {
  animation: drunkCami 4s;
color: white;
animation-iteration-count: infinite;
}
@keyframes drunkCami {
  0% { filter: blur(1px); text-shadow: 0 0 2px grey; }
  50% { filter: blur(2px); text-shadow: 0 1px 2px grey; }
  80% { filter: blur(1px); text-shadow: 0 3px 2px grey; }
  90% { filter: blur(2px); text-shadow: 1px 2px 0 grey; }
  20% { filter: blur(1px); text-shadow: 0 0 2px grey; }
  50% { filter: blur(2px); text-shadow: 0 1px 2px grey; }
  80% { filter: blur(1px); text-shadow: 0 3px 2px grey; }
  10% { filter: blur(3px); text-shadow: 0 0 4px grey; }
  90% { filter: blur(2px); text-shadow: 3px 4px 0 grey; }
  20% { filter: blur(1px); text-shadow: 0 1px 2px grey; }
}