body {
  background: url(https://louse.neocities.org/piccies/soup.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

#come-with-us {
  color: magenta;
  text-shadow: 2px 2px black;
  font-family: "Comic Sans MS";
}


.louse {
  width: 80%;
  max-width: 550px;
  display: block;
  margin: 0 auto;
  margin-top: -20px;
}


.wrapper {
  text-align: center;
}

  .shrew {
  width: 50%;
  max-width: 250px;
  display: block;
  margin: -50px auto 0; /* center + move up */
  animation: spin 3s linear infinite;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
  





