.header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

    /* use this to become responsive the navbar with out the usage of max content as main measure
    * this is  useful when we need to use measures with values, px, rem, etc. */
    min-height: 70px;
    max-height: max-content;
    /* content box is the default value and box sizing defines
    the size according to height and width only*/
    box-sizing: border-box;

    background-color: var(--clr-bg-nav);
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vh;
    padding-bottom: 0.3rem;
    margin: 0.3rem 0rem;

    font-family: 'Carter One', cursive;
    font-size: 1.30rem;
    text-transform: capitalize;
    box-sizing: border-box;
}
.logo__image{
    width: 1.5rem;
    margin-right: 1rem;
}
.logo__tittle--light{
    color: var(--clr-bg-footer);
}
.nav-bar{
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    width: 55vh;

    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: normal;
}
.nav-bar__list-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.nav_bar__option{
    margin: 0rem 0.5rem 0rem 0.5rem;
    cursor: pointer;
    transition: transform 0.4s, color 0.05s;
    text-decoration: none;
    color: var(--clr-bg-footer);
}
.nav_bar__option:hover{
    text-decoration: none;
    transform: scale(1.15);

}
.nav_bar__option:active{
    color: var(--clor-nav-active);
}
._option-bolder{
    font-size: 1.25rem;
    font-weight: bolder;
}

