*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    background: linear-gradient(#2b1055,#7597de);
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}
header .logo{
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
header ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li{
    list-style: none;
    margin-left: 20px;
}
header ul li a{
    text-decoration: none;
    padding: 6px;
    color: white;
    border-radius: 20px;
}
header ul li a:hover,
header ul li a.active
{
    background: white;
    color: #2b1055;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center; 
    align-items: center;
    overflow: hidden;

}
section::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top,#1c0522,transparent);
    z-index: 9;
}
section img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}
section img#moon{
    mix-blend-mode: screen; 
    /* help to blend the color with background */
}
section img#mountains_front{
    z-index:6;
}
#name{
    position: absolute;
    right: -60px;
    color: white;
    white-space: nowrap;
    font-size: 7rem;
    z-index: 5;
}
#btn{
    position: relative;
    color: #2b1055;
    display:inline-block;
    background-color: white;
    text-decoration: none;
    font-size: 2rem;
    border-radius: 40px;
    padding: 8px 40px;
    /* z-index: 9; */
    transform: translateY(100px);   
    pointer-events: visible;
}
.second{
    position: relative;
    padding: 100px;
    background: #1c0522;
}
.second h2{
    color: rgb(255, 255, 255);
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.second h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: rgb(183, 248, 183);
    
}
.second p{
    color: rgb(181, 203, 243);
    font-weight: 100!important;
    font-size: 1.2rem;
    margin-bottom: 15px;
    
}
