@font-face {
    font-family: AudiFont;
    src: url(../fonts/AudiTypeVF.woff2);
}

:root {
    --color-black: #000000;
    --color-light-gray: #E8E8E9;
    --color-dark-gray: #606060;
    --color-white: #FFFFFF;

    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    background-color: #E8E8E9;
    width: 100%;
    height: var(--header-height);
    padding: 0 20px;    
}

nav #nav-logo {
    height: var(--header-height);
}

nav div {
    height: var(--header-height);   
}

nav .nav-link {
    font-family: 'AudiFont';
    font-weight: 500;
    font-size: 15pt;
    text-decoration: none;
    color: #000000;
    padding: 0 15px;

    height: var(--header-height);
    display: inline-block;
    line-height: var(--header-height);
}

nav .nav-link:hover {
    background-color: #dbdbdb;
}

nav .nav-link.active {
    border-bottom: solid 5px var(--color-black)
}

footer {
    height: 60px;
    width: 100%;
    background-color: #606060;
    text-align: center;
    line-height: 60px;
}

footer a {
    text-decoration: none;
    color: #000000;
}