@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap');

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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

.name {
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 600;
  animation: flash 3s steps(6, jump-start) 0.5s infinite;
}

@keyframes flash {
  0%,
  16.66% {
    color: #ff045f;
  }
  16.67%,
  33.32% {
    color: #ffd400;
  }
  33.33%,
  49.98% {
    color: #0097ff;
  }
  49.99%,
  66.64% {
    color: #00c48c;
  }
  66.65%,
  83.3% {
    color: #c400ff;
  }
  83.31%,
  100% {
    color: #ff8c00;
  }
}
