@font-face {
    font-family: 'Comfortaa';
    src: url('Comfortaa-Variable.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.5;
}
h1, h2 {
    line-height: 1.3;
}
h1 {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: #222;
}
footer {
    margin-top: auto;
    padding: 3rem 0 2rem;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #767676;
    text-align: center;
}
footer a {
    color: #767676;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 640px) {
    h1 {
        font-size: 1.5rem;
    }
}
