html {
    background: white;
  }
  body {
    background: white;
  }
  
  html, body, #__next {
    height: 100%;
  }
  .rotate {
    animation: rotate 3s linear;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }