@import url(header-menu.css);

@media screen and (max-width: 768px) {
    .header-menu-icon {
        width: 50px;
    }
    
    .header-logo h1 {
        font-size: 2rem;
    }

    .header-logo h2 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 769px) {
    .header-menu-icon {
        width: 75px;
    }
    
    .header-logo h1 {
        font-size: 3rem;
    }

    .header-logo h2 {
        font-size: 2rem;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 1rem;

    background-color: var(--cPrimary);

    height: 100px;
}

.header-btn-menu {
    background: none;
    border: none;
}

.header-menu-icon {
    cursor: pointer;
}

.header-menu-icon:hover {
    filter: brightness(0) saturate(100%) invert(70%) sepia(8%) saturate(577%) hue-rotate(131deg) brightness(97%) contrast(87%);
}

.header-logo {
    display: flex;
    align-items: center;
    color: var(--cBackground);
}

.header-logo h1 {
    font-family: var(--font-arsenal);
    font-weight: 700;
    padding-right: 1rem;
}

.header-logo h2 {
    font-family: var(--font-ibmPSerif);
    line-height: .9;
    padding-left: 1rem;

    border-left: 2px solid var(--cBackground);
}