*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#wrapper{
    height: 100vh;
    /* width: 100vh; */
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}
.container{
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: -1;
}
.background{
    transform: translateZ(-40px) scale(5.1);
}
.foreground{
    transform: translateZ(-20px) scale(3);
}
.background ,.foreground{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
h1{
    position: absolute;
    top: 14rem;
    font-size: 6em;
    letter-spacing: 0.01em;
    transition: all 0.4s;
    color:whitesmoke;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

section{
    background-color: rgb(45,45,45);
    color: white;
    padding:5rem 0 ;
}

.bg1{
    background-image: url(/sp1.jpg);
}
.bg2{
    background-image: url(/sp-2.jpg);
}
.bg3{
    background-image: url(/sp-3.jpg);
}
.bg4{
    background-image: url(/bg.jpg);
}

.secHeading{
    font-size: 5rem;
    padding: 0 10rem;
}
.text{
    
    font-size: 1.5rem;
    padding: 0 10rem;
    margin: 5rem 0;
}
.bg{
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 500px;
}
.desc{
    position: absolute;
    background-color: white;
    padding: 0.5rem 2.5rem;
    top: 50%;
    left: 50%;
    transform: translateX(-52%);
    color: black;
    font-size: 3.5rem;
    font-weight: 600;
}
h1:hover{
    color: rgb(244, 234, 234);
    text-shadow: 2px 2px 30px black;
    filter:blur(.1px);
    transition: all ease 1s;
    scale: 1.1;
}