@charset "UTF-8";

/* Global Styles */
* {
  box-sizing: border-box;
}

/* Header */
header {
  background-color: black;
  color: white;
  width: 100%;
  padding: 50px;
  text-align: center;
}

/* Body Structure */
body {
  background: #24aecd;
}
section {
  margin: 100px;
  padding: 100px;
}

.monster {
  width: 190px;
  height: 240px;
  margin: 2% auto;
  background: url('https://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/blog/monster.png') left center;
  animation: play .8s steps(10) infinite;
}

@keyframes play {
  0% {background-position: 1900px;}
  50% {transform: skewx(20deg)}
	100% { background-position: -1900px; }
}

/* Footer */
footer {
  background-color: black;
  color: white;
  width: 100%;
  padding: 10px;
  text-align: center;
}