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

.wrapper {
  font-family: Antarctica;
  color: var(--dark);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 8s linear infinite alternate;
  font-size: 7rem;
}

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