html {
    scroll-behavior: smooth;
    font-size: 18px;
}

@media (max-width: 600px) {
    html {
        font-size: 17px;
    }
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: white;
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
