@font-face {
    font-family: "Geist";
    src: url("/static/fonts/Geist-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900; /* variable weight range */
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100dvh; /* dvh = dynamic viewport height; because iphone includes searchbar in 100vh. */
    font-family:
        Geist,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
    line-height: 1.6;
    color: #111;
}

main {
    flex: 1;
}

.header-container {
    padding: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.main-container {
    padding: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.footer-container {
    padding: 1rem;
    margin: 0 auto;
    max-width: 800px;
}
