*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(rgb(62, 2, 31),rgb(12, 0, 25));
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    width: 95%;
    position: absolute;
    z-index: 1;
}
.logo{
    text-transform: uppercase;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
}
a{
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 3px 10px;
}
header ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}
header ul li{
    justify-content: space-between;
    margin-right: 30px;
}
a:hover,.active{
    background-color: #fff;
    color: black;
    border-radius: 15px;
}
.main{
    position: relative;
    width: 100%;
    height: 100vh;
}
.main img{
    position: absolute;
    width: 100%;
    object-fit: cover;
    height: 100vh;
}
#moon{
  mix-blend-mode: screen;
}
.content{
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    padding-left: 25px;
}