header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: #FCD136;
    padding: 1rem 5rem;
    
    @media only screen and (min-width: 37.5rem) and (max-width: 75rem) {
        padding: 0.75rem 2.5rem;
    }

    @media only screen and (max-width: 37.5rem) {
        padding: 0.75rem 1.25rem;
    }

}

header button {
    display: flex;
    
    @media only screen and (max-width: 75rem) {
        display: none;
    }
}

header .img {
    display: none;

    @media only screen and (max-width: 75rem) {
        display: flex;
    }
}

header .parkbee-icon {
    background-image: url(../assets/icons/parkbee.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    height: 20px;
    flex-shrink: 0;
}

header .nav-icons {
    display: flex;
    gap: 10px;
}


