

.header{
    background-color: rgb(54, 54, 54);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    width: 100%;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 12px;
}

.header .logo{
    cursor: pointer;
    margin-left: 2rem;
}

.header .logo img{
    height: 2.5rem;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;
    margin-right: 2rem;
}

.header .nav-links li{
    display: inline-block;
    padding: 0 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.header .nav-links a{
    font-size: 12px;
    color: white;
    text-decoration: none;

}

.header .nav-links li:hover{
    transform: scale(1.2);
}

.header .nav-links a:hover{
    color:#B78010
}

.menuHamburger{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.menuImg{
    display: block;
    width: 2rem;
}

@media (max-width:800px) {

    .menuHamburger{
        display: flex;
    }

    .nav-links{
        position: fixed;
        z-index: 10;
        max-width: 250px;
        width: 100%;
        height: 100%;
        display: grid;
        grid-auto-rows: max-content;
        background-color: rgb(54, 54, 54);
        top: 10%;
        right: -9%;
    }

    .header .nav-links a{
        display:flex;
        justify-content: right;
        align-items: right;
        text-align: right;
        margin-right: 3rem;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 16px;
    }

}