:root {
    --navbar_height: 50px;
    --primary_color: rgb(40, 40, 40);
}

@font-face {
    font-family: Futurist;
    src: url(fonts/FUTRFW.TTF);
}

@font-face {
    font-family: Lexend;
    src: url(fonts/Lexend-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* do not allow horizontal scrolling */
}

.content {
    flex-grow: 1;
}

.navbar {
    display: flex;
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100vw;
    height: var(--navbar_height);
    align-items: center;
    background-color: var(--primary_color);
}

.navbar_logo_text {
    margin-left: 0.5em;
    font-family: futurist;
    font-size: 1.7em;
    color: white;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
    background-color: var(--primary_color);
}