html, body {
  width: 100%;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafafa;
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue, arial, sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

#app {
  min-height: 100vh;
  height: 100%;
}

#page-container {
  min-height: 100vh;
  position: relative;
}

#content-wrap {
  padding-bottom: 9rem;
  padding-left: 15px;
  padding-right: 15px;
}

footer {
  text-align: center;
  height: 9rem;
  background-color: #fafafa;
  padding: 8px;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#container {
  width: 960px;
  text-align: center;
  margin: auto;
}

header, footer {
  padding: 20px;
}

img {
  width: 100px;
}

@keyframes spin-me {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.thing-to-spin {
  animation-name: spin-me;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/*# sourceMappingURL=index.194e572c.css.map */
