header {
    height: 4em;
    width: 100%;
    max-width: 100vw;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 30px rgb(199, 199, 199);
}

.header-nav {
    width: 100%;
    max-width: 100vw;
    margin: 0 2rem 0 2rem;
    height: 100%;
    gap: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav h1{
    text-align: center;
    margin: auto 0 auto 0;
}

.header-aside {
    height: 100%;
    display: flex;
    width: max-content;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.header-aside a {
    width: fit-content;
    text-decoration: none;
    color: var(--black);
}

.header-buttons i{
    text-align: center;
}

.header-aside h3 {
    font-size: 1.17rem;
    min-width: max-content;
    position: relative;
}

.header-aside h3::after {
    position: absolute;
    content: "";
    background-color: var(--accent);
    height: 2px;
    width: 100%;
    bottom: 0px;
    transform-origin: center;
    left: 0;
    transform: scaleX(var(--scale, 0));
    transition: transform 0.2s ease-out;
}

.header-aside h3:hover::after {
    transform: scaleX(1);
}

@media screen and (max-width: 1024px) {
    header{
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .header-nav {
        justify-content: center;
    }

    .header-nav h1 {
        display: none;
    }
}