@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0px;
    box-sizing: border-box;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}

body{
    background: #FFF url(.png);
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
}

#header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

#header .logo{
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
}

#header ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#header ul li{
    list-style: none;
}

#header ul li a{
    text-decoration: none;
    padding: 6px 15px;
    color: white;
    border-radius: 20px;
}

#header ul li a:hover,
#header ul li a.active{
    background: #fff;
    color: #361040;
}

.sec{
    position: relative;
    padding: 100px;
    height: 100vh;
}

.sec h2{
    font-size: 3.5rem;
    color: #000;
}

.sec p{
    color: #000;
}

#scene{
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
 
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    scroll-behavior: smooth;
}
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#scene img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter:drop-shadow(10px 7px 10px rgb(255, 255, 255));
}
