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

body {
  font-family:
    "InterVariable",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  /* Default light mode styles for browsers that don't support prefers-color-scheme */
  background-color: oklch(98.5% 0.002 247.839);
  color: oklch(13% 0.028 261.692);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
}

.title {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.tag {
  font-size: clamp(1rem, 0.1818rem + 3.6364vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Light mode */
@media (prefers-color-scheme: light) {
  body {
    background-color: oklch(98.5% 0.002 247.839);
    color: oklch(13% 0.028 261.692);
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: oklch(13% 0.028 261.692);
    color: oklch(98.5% 0.002 247.839);
  }
}
