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

body {
  height: 100vh;
  overflow: hidden;
  font-family: Georgia, serif;
}


.gradient {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    #e96b8a,
    #fc541c,
    #f4a94e,
    #c883f8,
    #bb5cff,
    #6f5cff,
    #3d9eff,
    #4abaff,
    #29d8ff
  );
  background-size: 300% 300%;
  animation: shift 9s ease infinite;
  z-index: 0;
}

@keyframes shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  gap: 1rem;
}

.content h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.content h2 {
  font-size: clamp(1.5rem, 8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.content p {
  font-size: 1.3rem;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: background 0.3s ease, opacity 0.3s ease;
  margin-top: 5px;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

