* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
  background-color: #fe670e;
  background-image: linear-gradient(to bottom, #fe670e 0%, #ef1274 100%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}

h1 {
  font-weight: normal;
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: -0.05em;
  margin: 3vw 0;
  margin-bottom: 10vw;
  opacity: 0;
  animation: fade 2s forwards;
}

h2 {
  font-size: clamp(50px, 10vw, 120px);
  line-height: 1;
  animation: spin 5s infinite linear;

}

h3 {
  font-size: clamp(15px, 3vw, 34px);
  font-weight: normal;
  margin-top: 2vw;
  opacity: 0;
  animation: fade 2s forwards;
  animation-delay: 1s;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
