@import "css/reset.css";
@import "css/typography.css";
@import "css/variables.css";
@import "css/header.css";
@import "css/footer.css";
@import "css/buttons.css";
@import "css/form.css";
@import "css/animations.css";
@import "css/sections.css";

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: var(--font-termina);
    color: var(--color-black-mat-dark);
    background-color: var(--color-white-muted);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

footer {
    margin-top: auto;
}

:root {
    --anchor-scroll-offset: 2.8rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-scroll-offset);
}

:where(section, article, main, div)[id] {
    scroll-margin-top: var(--anchor-scroll-offset);
}

.container {
    max-width: 94.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 1536px) {
    .container {
        max-width: 120rem;
    }
}

@media screen and (min-width: 1024px) {
    :root {
        --anchor-scroll-offset: 4rem;
    }

    .container {
        padding-left: 4.438rem;
        padding-right: 4.438rem;
    }
}

.site-dropdown-language__list a {
    color: var(--color-white-muted);
}

p strong {
    font-weight: 500;
}