* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #050816;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.qafar {
  font-size: clamp(60px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: white;
  text-shadow: 0 0 40px rgba(80, 58, 231, 0.6);
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

@keyframes float {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}
