
body{
    margin: 0;
     background-color: #d3d3d3;
}
.wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: 1;
}
.fore{
/*    transform: translateZ(-5px);*/
    z-index: -1;
}

.back{
    transform: translateZ(-10px) scale(2) translateX(-1vw);
}

.fore,
.back{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 3;
    
}
.fore2{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 6;
    transform: translateZ(1px) translateX(5vw);
}

.title {
    font-size: 7rem;
    padding: 2rem;
    color: red;
    text-shadow: 0 0 5px black;;
    transform: translateZ(1px);
    z-index: 5;
}

section{
     position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: 4;
    background-color: #171202;
    opacity: 1;
}   