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

body {
  background: #0f0f0f;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.container {
  text-align: center;
}

.title {
  font-size: 8vw;
  color: #ffffff;
  letter-spacing: -2px;
  animation: fadeIn 1.5s ease-out;
}

.title span {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
}

.description {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-out 0.7s backwards;
}

.button {
  display: inline-block;
  padding: 8px 20px;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  animation: fadeIn 1.5s ease-out 0.7s backwards;
  border: 1px solid #ffffff;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  opacity: 0.5;
  animation: fadeIn 1.5s ease-out 0.7s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .title {
    font-size: 12vw;
  }
}

.email {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  animation: fadeIn 1.5s ease-out 0.5s backwards;
}

.email:hover {
  color: #ffffff;
  text-decoration: underline;
}
