body {
  background-color: var(--white);
  overflow: hidden;
}

.wrapper {
  color: var(--black);
  font-family: Antarctica;
  position: absolute;
  top: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-variation-settings: "wdth" 1, "wght" 1, "ital" 0, "CNTR" 0;
}

p {
  padding-bottom: -2px;
}

.rotate {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear alternate infinite;
  font-size: 3rem;
  font-variation-settings: "wdth" 1, "wght" 1, "ital" 0, "CNTR" 0;
}

.rotate:hover {
  animation-play-state: paused;
  color: #cc0000;
}

@keyframes rotate {
  0% {
  }
  100% {
    transform: rotate(36000deg);
    font-variation-settings: "wdth" 100, "wght" 300, "ital" 0, "CNTR" 0;
  }
}
