header{
    width: 100%;
    height: 100px;
    background-color: rgb(30, 30, 30);
}



#brand-img{
    position: absolute;
    height: 80px;
    margin-top: 5px;
    margin-left: 65px;
}

#brand-name{
    position: absolute;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin-top: 32px;
    margin-left: 155px;
}



nav{
    float: right;
    margin-right: 100px;
    margin-top: 3px;
}

nav ul{
    list-style-type: none;
    font-size: 18px;
}

nav li{
    display: inline-block;
    padding: 34px 22px;
}

nav li:hover{
    color: rgb(160, 160, 160);
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.navIcon{
    display: none;
}












@media only screen and (max-width: 1200px){
    #brand-img{
        height: 70px;
        margin-top: 10px;
        margin-left: 65px;
    }
    
    #brand-name{
        font-size: 17px;
        margin-top: 32px;
        margin-left: 140px;
    }



	nav{
        margin-right: 50px;
    }
    
    nav ul{
        font-size: 16px;
    }
    
    nav li{
        display: inline-block;
        padding: 34px 16px;
    }
}

@media only screen and (max-width: 900px){
    #brand-img{
        height: 60px;
        margin-top: 15px;
        margin-left: 30px;
    }
    
    #brand-name{
        font-size: 16px;
        margin-top: 32px;
        margin-left: 105px;
    }



    .navIcon{
        display: block;
        float: right;
        font-size: 25px;
        margin-right: 20px;
        margin-top: 30px;
    }

    nav{
        width: 100%;
        margin: 0;
        margin-bottom: 70px;
    }

    nav ul{
        display: none;
        margin-top: 95px;
    }

    nav li{
        display: block;
        padding: 15px 50px;
        background-color: rgb(40, 40, 40);
    }

    nav li:hover{
        background-color: rgb(60, 60, 60);
        color: white;
    }
}

@media only screen and (max-width: 320px){
    #brand-img{
        height: 60px;
        margin-top: 15px;
        margin-left: 30px;
    }
    
    #brand-name{
        display: none;
    }
}