:root {
  --color-bg: #FDFAF2; 
}

@font-face {
  font-family: 'Xeno';
  src: url('fonts/xeno.otf');
}

h1 {
  font-family: 'Xeno', system-ui;
  text-align: center;
  font-size: calc(1.625rem + 4.5vw);
  user-select: none;
}

.animate-spin {
  animation: spin;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

