:root {
  --bg-color: #111111;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  line-height: 1.5;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

p {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}