@font-face {
  font-family: 'Madimi One Regular';
  src: url('../fonts/madimi-one-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gugi Regular';
  src: url('../fonts/gugi-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
    --bg: #0f172a;
    --fg: #e5e7eb;
    --accent: #38bdf8;
    --muted: #94a3b8;
}

* {
    box-sizing: border-box;
}

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

main {
    padding: 2rem;
}

h1 {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}

h1 span {
    color: var(--accent);
}

p {
    margin: 0.5rem 0;
    color: var(--muted);
    font-size: 1.1rem;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--muted);
}
