@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 {
  margin: 0;
}

#background {
  background-image: url(images/background.jpg);
  width: 100%;
  height: 1022px;
  z-index: -1;
  animation: back 20s infinite;
  animation-timing-function: linear;
}

@keyframes back {
  100%{
      background-position: -3067px 0;
  }
}

#sprite {
  position: absolute;
  top: 730px;
  left: 300px;
  width: 256px;
  height: 256px;
  background-image: url(images/walk.png);
  animation: sprite .6s steps(6) infinite;
  z-index: 1;
}

@keyframes sprite {
  100%{
      background-position: -1536px 0;
  }
}

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