.header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 11;

    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 16px;

    border-radius: 16px;
    border: 1px solid var(--white-48);

    background: var(--dark-navy-4);

    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);

    transition: transform 0.5s ease-in-out;
}

.header--hidden {
    transform: translateY(calc(-100% - 32px));
}

.header__logo {
    width: 56px;
    height: 56px;
}

.header__title {
    max-width: 128px;
}

.header__title a {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 160%;
}

.header__button {
    padding: 12px 16px;
    height: 48px;
    text-transform: uppercase;

    background-color: var(--white);

    color: var(--dark-navy);
    font-size: 14px;
}

@media (min-width: 700px) {
    .header {
        top: 32px;
        left: 32px;
        right: 32px;
        padding: 16px 40px;
        border-radius: 24px;
    }

    .header__logo {
        width: 88px;
        height: 88px;
    }

    .header__title {
        max-width: none;
    }

    .header__title a {
        font-size: 20px;
    }

    .header__button {
        height: 56px;
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .header__title a {
        font-size: 24px;
    }
}