.mainNav{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 2rem;
    position: fixed;
    background: var(--navbackground);
    top: 0;
    z-index: 1;
    transition: 1s;
   
    
}
.dameraLogo{
    
    display: flex;
    flex-wrap: nowrap;
    align-items: center;

    
}
.dameraLogo img{
    width: 120px;
    
}
.creatives{
   
    font-weight: 700;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--fabcolor);
    text-decoration: none;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;

}

.pages{
    
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;

}
.pages a{
   
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--headclr);
    text-decoration: none;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    
}



.burger{
    display: none;
}
.icon{
    color: var(--fabcolor);
    font-size: 1.7em;   
    cursor: pointer;
    
}
.burgerMenu{
    width: 100%;
    background: #454545ef;
    background: #507814f7;
    display: none;
    position: fixed;
    z-index: 1;
    top: 7.6rem;
    
}   
.burgerMenu a{
    text-decoration: none;
    color: white;
    font-size: .9rem;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    display: block;
    padding: 2rem;
    text-align: center;
}
.burgerMenu a:hover{
    background: #2b2b2b;
    
}

@media screen and (max-width: 900px){

    .mainNav{
        
        justify-content: space-between;
        padding-left: 1rem;
        padding-right: 1rem;
        border-bottom: unset;
        
        
    }
    .dameraLogo img{
        width: 90px;
       
    }
    .creatives{
        display: none;
    }
    
    .pages{
        display: none;
    }
    
    .burger{
        display: block;
        

    }
    
    
}