@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

*{
    padding: 0;
    margin: 0;
}

body{
    background: linear-gradient(#2d0134,#10001f);
    height: 100vh;
    font-family: "Lilita One", sans-serif;
}

/* head section */
.head{
    position: absolute;
    width: 97.5%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.head h1 {
    font-size: clamp(30px, 4vw + 1rem, 50px);
    text-transform: uppercase;
    color: #fff;
    z-index: 100;
    margin: 30px;
}

.head h1:hover{
    background-color: #fff;
    color: #2d0134;
    border-radius: 50px;
    padding: 5px 15px;
}

/* main section */
.main{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main::after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 10%;
    width: 100%;
    background: linear-gradient(to top, #2d0134, transparent);
}

.main img{
    position: absolute;
    min-height: 100vh;
    max-width: 100%;
    object-fit: cover;
}

#moon{
    mix-blend-mode: screen;
    transform: translateY(80px);
}    

.night{
    color: #fff;
    transform: translateY(-140px);
}

/* content section */
.content{
    color: #fff;
    padding: 30px;
}

.content h2 {
    margin: 20px;
   font-size: clamp(25px, 2vw + 0.5rem , 30px);
}

.content p{
    margin: 10px;
}
