


@media screen and (max-width: 768px){
    #fixed-background::before{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("../img/landing_page_mobile.png");
        /* Use the whole height */
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}

@media screen and (min-width: 768px){
    #fixed-background::before{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("../img/landing_page.jpg");
        /* Cover 80% of the width */
        background-size: cover;
        background-position: 75% 50%;
        z-index: -1;
    }
}




#about {
    background-color: black;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(6, 22, 33, 1) 100%);
    margin: 0;
}

#about p{
    color: white;
}

#about-inner{
    padding: .5em 0;
    margin-left: 7%;
    margin-right: 7%;    
    color: white;
    text-align: left !important;
}

#about-us-spacer{
    height: 20vh;
}

#about-us-text{
    text-align: justify !important;
    word-break: normal;
    hyphens: auto;
}