body{
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    
}
.wrapper{
   height:100vh;
   overflow-y: auto;
    scroll-behavior: smooth;
    overflow-x: hidden;
    perspective: 10px;
}
header{
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
    transform-style: preserve-3d;
   

}
.title {
    position: relative;
    top: -380px;
    right: 0px;
    font-size: 7rem;
    font-weight: bold;
    color: #fff94e;
     transform: translateZ(-10px) scale(2);
    
   
    
}
 .foreground{
    position: absolute;
    top: 45px;
    left:0;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;
    transform-style: preserve-3d;
    transform: translateZ(-5px) scale(1.5);
    z-index: 0;
    
}
.background{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;
    transform-style: preserve-3d;
    transform: translateZ(-10px) scale(2);
    z-index: -2;
    
}


section img{
    width:100%;
    z-index:3
   
}
