@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}

.title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05rem;

}

.subtitle {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 400;
  color: #555;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}
