body {
    line-height: 2;
    background-color:black;
    background-image: url("../img/Trollface.png");
    font-family: "lithograph";
    font-size:18pt;
    margin-left: auto;
    margin-right: auto;
    width:800px;
}

marquee {
  font-size: 48pt;
  color:red;
  text-shadow:2px 2px 5px black;
}

.rotate {
  animation: rotation 2s infinite linear; 
}

@keyframes rotation {
  from{
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}