body {
   width: 100vw;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: black;
   margin: 0;
}

.rotate {
   animation: spinner 3600s linear infinite;
}

@keyframes spinner {
   to {
      transform: rotate(360deg);
   }
}

.arrokoth {
   margin: auto;
   max-height: min(32em, 80vw);
}
