@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --background: #FAFAFA;
    --on-background: #0E0E0E;

    --max-width: 1080px;

    font-size: 18px;
    font-family: "Abril Fatface", serif;
}

/** WRAPPERS **/

.page-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.full-page {
    height: 100vh;
}

/** ELEMENTS **/
h1 {
    letter-spacing: 2px;
}

/** DISPLAY **/

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.logo-xl {
    max-height: 256px;
    max-width: 90vw;
}

.gap-xl {
    gap: 8rem;
}

@media only screen and (max-width: 1200px) {
    :root {
        font-size: 16px;
    }
}