*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}
body{
    background: linear-gradient(#200016,#10001f);
    height: 100vh;
}
a{
    text-decoration: none;
    color: #fff;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 20px 0px;
    position: fixed;
    width: 100%;
    margin: auto;
    z-index: 100;
}
header ul li{
    display: inline-block;
    margin: 0px 10px;
}
header ul li a{
    padding: 6px 15px;
    transition: 0.5s ease;
    border-radius: 20px;
}
header ul li a:hover , .active{
    background-color: white;
    padding: 6px 15px;
    color: #200016;
    border-radius: 20px;
}

header .logo{
    font-size: 30px;
    text-transform: uppercase;
}

/* ------------------------------------------------------------------------------------ */

.main{
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center ;
    overflow: hidden;
}
.main::after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to top, #200016 , transparent);
}
.main img{
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#moon{
    mix-blend-mode: screen;
    transform: translateY(80px);
}

.nouvil{
    color: white;
    font-size: 25px;
    text-align: center;
    transform: translateY(-140px);
}

.content{
    color: white;
    padding: 30px;

}
.content h2{
    margin: 20px;
    font-size: 30px;
}
.content p{
    margin: 20px;
}