/* header css config */

#header {
    display: flex;
    position: fixed;
    border-bottom: var(--antaq-azul) 2px solid;
    height: 7rem;
    width: 100vw;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    background-color: var(--antaq-azul);
    z-index: 1000;
}


/* original logo-container */
#logo-container {
    box-sizing: border-box;
    display: flex;
    flex: 1;
    height: 100%;
    flex-direction: row;
}

#logo-container > #img-logo {
    width: 30%;
    max-width: 20rem;
    height: 100%;
    display: flex;
    align-items: center;
}

/* original logo-container */
#img-logo img { 
    padding: 1rem;
    width: 100%;
    height: auto;
    max-width: 12rem;  
}



#logo-container > h1 {
    font-size: 2.8rem;
    color: white;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0.5rem;
    text-align: center;
}

/* change h1 size for screen width < 450px */
@media screen and (min-width:351px) and (max-width: 450px) {
    #logo-container > h1 {
        font-size: 1.8rem;
        justify-content: flex-start;
    }
}

/* change h1 size for screen width < 300px */
@media screen and (max-width: 350px) {
    #logo-container > h1 {
        font-size: 1.5rem;
        justify-content: flex-start;
    }
}


#dropdownmenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 10%;
    height: 100%;
}

#menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#menu li {
    display: flex;
    align-items: center;
}

#menu img {
    margin-left: 1.6rem;
    height: 3.5rem;
    width: 3.5rem;
}

#menu a {
    display: block;
    padding: 1.5rem;
    font-size: 2.1rem;
    color: var(--color-text-menu);
    text-decoration: none;
}


#menu {
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 7rem;
    right: 0px;
    height: 0;
    background-color: var(--bg-menu);
    z-index: 1000;
    transition: .6s;
    overflow-y: hidden;
    overflow-y: auto;
}

#dropdownmenu.active #menu {
    visibility: visible;
    height: calc(100vh - 7rem);
}

#dropdownmenu > button {
    flex: 1;
    color: white;
    /* width: 5rem;
    height: 5rem; */
    border: none;
    padding: 0;
    font-size: 2rem;
    background: none;
    /* position: absolute; */
    right: 1rem;
}
