*{
    margin: 0;
    padding: 0;
}
body{
    background: linear-gradient(#410327,rgb(4, 7, 53));
    height: 100vh;
    font-family: system-ui ;
}
a{
    text-decoration: none;
    color: white;
    cursor: pointer;

}
header{
    position:absolute ;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    z-index: 10;
}
header .logo{

    text-transform: uppercase;
}
header ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    
}
header ul li{
    margin-right:40px;
    /* margin-top: 30px;
    margin-left: 30px; */

}
header ul li a{
    padding:6px 15px ;
}

header ul li a:hover, .active{
    background-color: rgb(255, 255, 255);
    padding: 8px;
    border-radius: 19px;
    color:#410327 ;
}
.main{
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.main img{
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
 #moon{
    mix-blend-mode: screen;
        transform: translateY(80px);
}
.main .nouvil{
    color: white;
    font-size: 30px;
    text-transform: uppercase;
    transform: translateY(-180px);


}
.content{
    color: white;
    padding: 30px;
}
.content h2{
    margin: 30px;
    font-size: 40px;
}
.content p{
    margin: 15px;
}
.main::after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to top,#410327,transparent);

}