body {
    margin: 0;
}

main {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 2px;    
}

section {
    transform-style: preserve-3d;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.no-parallax {
    background-color: #EDF1F4;
    z-index: 999;
}

.navbar {
    position: absolute;
    margin-right: 90vw;
    margin-bottom: 92vh;
}

section h1 {
    text-align: center;
    color: #0C1D21;
    background-color: white;
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

.parallax h1 {
    padding-inline: 1vw;
    min-width: 7vw;
}

.parallax::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: translateZ(-2px) scale(2);
    background-size: 100%;
    z-index: -2;
}

.bg::after {
    background-image: url(photos/MYLandingWallParallaxOffCenteredCMP.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 1100px) {
    section h1{
        font-size: 8rem;
    }
    .parallax h1 {
        font-size: 4.5vw;
        margin-right: 58vw;
        margin-bottom: 16vw;
        color: #0C1D21;
        background-color: rgba(0, 0, 0, 0);
    }
}