*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins",sans-serif;
}

.wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
   
    
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
   

}

.background{
    transform: translateZ(-20px) scale(4) ;
    
}

.foreground{
    transform: translateZ(-10px) scale(2);
}

.background,.foreground{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    
}

h1{
    
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    letter-spacing: 4px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

section{
    background-color: rgb(45, 45, 45);
    color: white;
    background-size: cover;
    padding: 5rem 0;

}

.secHeading{
    font-size: 5rem;
    padding: 0 10rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text{
    font-size: 1.5rem;
    padding: 0 10rem;
    margin: 5rem 0;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.bg{
    position: relative;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 500px;
}

.bg1{
    background-image: url(/assets/sport-1.jpg);
}

.bg2{
    background-image: url(/assets/sport-2.jpg);
}

.bg3{
    background-image: url(/assets/sport-3.jpg);
}

.desc{
    position: absolute;
    background-color: white;
    padding: 0.5rem 2.5rem;
    top:42%;
    left: 40%;
    color: black;
    font-size: 3.5rem;
    font-weight: 600;
}

.para{
    left: 35%;

}