@font-face {
    font-family: "Suisse Intl";
    src: url("./assets/fonts/SuisseIntl-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("./assets/fonts/SuisseIntl-RegularIt.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-sans:
        "Suisse Intl", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    --base-font-size: 16px;
    
    --spacing-200: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: var(--base-font-size);
    max-width: 1024px;
    margin: auto;
    padding: var(--spacing-200)
}
