@font-face {
    font-family: Geist;
    src: url('/ressources/fonts/GeistMono-1.3.0/variable-ttf/GeistMonoVF.ttf');
    font-display: swap;
}

body {
    font-family: Geist, sans-serif;
}

#site-main {
    margin: auto;
    min-height: calc(100vh - 16px);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

@media ( min-width: 480px ) {
    #site-main {
        max-width: 70%;
    }
}

@media ( min-width: 1080px ) {
    #site-main {
        max-width: 66%;
    }
}

/*Header*/
#header {
    display: flex;
}

.sticky {
    position: fixed;
    top: 0;
    width: 95%;
    z-index: 2;
}

@media ( min-width: 480px ) {
    .sticky {
        width: 66%;
    }
}

.sticky + #content-block {
    padding-top: 160px;
}

#logo-section {
    margin-top: 1em;
    width: 50%;
}

#header-logo {
    max-width: 130px;
}

#navigation {
    width: 50%;
    display: block;
    text-align: right;
    list-style-type: none;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.5em;
}

#navigation a:link {
    text-decoration: none;
}

a:visited, a {
    color: inherit;
}

#navigation li.active a {
    text-decoration: underline;
}

/*Content Block*/
#content-block {
    height: auto;
    display: flex;
}

/*Footer*/
#footer {
    width: 100%;
    margin-top: auto;
}
#footer #links {
    float: right;
}

#footer a:link {
    text-decoration: none;
}

#footer ul > li {
    display: inline-block;
    list-style-type: none;
    margin-left: 2em;
    font-style: oblique;
    font-size: 0.8em;
}
