header {
    z-index: 1;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100vw;
    padding: 0;
    box-shadow: 0px 0px 8px #0000001e;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.header__container h1 {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.header__logo-link {
    text-decoration: none;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
}

.header__logo {
    margin-top: auto;
    margin-bottom: auto;
    height: 100px;
}

.header__nav {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    gap: 16px;
}

.header__link {
    color: black;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.header__link:hover {
    color: green;
    text-decoration: underline green 5px;
    text-underline-offset: 8px;
}

.header__link--active {
    color: green;
    text-decoration: underline green 5px;
    text-underline-offset: 8px;
    font-weight: 500;
    font-size: 18px;
}