.ParallaxContainer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 1);
}

.Parallax {
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.Parallax img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;

    /* -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); */
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ParallaxHeader {
    position: relative;
    text-align: center;
    font-size: 2.8vw;
    font-weight: 700;
    font-style: italic;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.1vw;
    /* border-radius: 100px; */
    /* border-color: rgba(0, 0, 0, 0.2); */
    /* border-style: solid; */

    /* background-image: linear-gradient(177deg, rgba(196, 196, 196, 0.5) 1.57068%, rgba(0, 0, 0, 0.4) 95.8115%); */
    background-color: rgba(0, 0, 0, 0.2);
}