.header {
    background-color: black;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header-title .hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    height: 0;
    width: 0;

}

.header-title svg {
    fill: white;
    height: 2rem;
    width: auto;
    translate: 0 2px;
}

.header-title-logo-desktop {
    display: none;
}

.header-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media screen and (min-width: 640px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .header-title-logo-mobile {
        display: none;
    }

    .header-title-logo-desktop {
        display: block;
    }
}