*{margin: 0;
padding: 0;
text-decoration: none;
list-style: none;
}
body{font-family:'Poppins','sans-serif';}

#fond{
   
    height: 100vh;
    width: 100vw;
    background-size: cover;
}
.navbar{
    position: absolute;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}
.navbar .logo {
    font-size: 2em;
    font-weight: 400;
}
.navbar .nav-links ul {
    display: flex;
}
.navbar .nav-links ul li{
    margin: 0 25px;
} 
.navbar .nav-links ul li#active a{ color: #f7f9f9f4;}

.navbar .burger {
    display: none;
    position: absolute;
    right: 50px;
    top: 50px;
    width: 30px;

}
a{
    color: #f7f9f9f4;
    

}
h1{
    font-weight:bold;
    font-size:1.2em;
    
}
li:hover{
    background-color:#B32727;
    width:5em;
    border:solid 1px #fff;
}

ul{
    font-size:2.5em;
    font-weight:bold;
}
@media screen and (max-width: 900px)
{
    .navbar{padding: 0;}
    .navbar .logo{
        position: absolute;
        top:10px;
        left: 10px;

    }
    .navbar .burger{
        display: block;
        margin-right:5em;
        background-color:#B32727;
        
    }
    .nav-links{
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(244, 241, 240, 0.300);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
       
    }
    .nav-links.mobile-menu {
        margin-left: 0;
    }
    .nav-links ul{
        
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar .nav-links ul li{
        margin: 0 25px;
        font-size: 1.2em;
    } 
    li:hover{
    background-color:#B32727;
    width:5em;
    border:solid 1px #fff;
}
}

    

