.parallax {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    h1 {
        color: #ffffff;
        font-size: 4rem;
        /*text-align: center;*/
        font-weight: 500;
    }
}

.parallax .container { position: relative; overflow:hidden; height: 42rem; width: 100% }
.container .round {
    border-radius: 100%;
    width: 25vw;
    height: 25vw;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -2vw;
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
}

.container .round h1 {
    font-size: 3rem;
}
.container .white {
    background: rgba(255,255,255,0.6);
}

.container .white h1 {
    color: #545454;
}

.container .dark {
    background: #545454;
}

.container .dark h1 {
    color: #ffffff;
}

