body {
  background-color: black;
  font-family: Arial, sans-serif;
}

.logo {
  object-fit: contain;
  image-rendering: pixelated;
}

footer {
  color: gray;
  display: flex;
  align-content: end;
  position: absolute;
  bottom: 0;
}

p {
  color: white;
}

img {
  transform: rotate(0deg);
  animation: rotate 10s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

:link { color: #777777; }
:visited { color: #777777; }
:link:active, :visited:active { color: #777777; }