body {
  margin: 0;
  padding: 0;
  background-color: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeIn 1s ease-in;
}

h1 {
  color: #888;
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

h1:hover {
  transform: scale(1.05);
}

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

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .container {
    padding: 1rem;
  }
}