.main-content {
    /*box-shadow: 0px 4px 4px rgba(0, 0, 0, 1);*/
}

.about-us {
    width: 100%;
    padding-top: 160px;
    padding-bottom: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us p {
    width: 750px;
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
}

.about-us h2 {
    width: 100px;
    font-size: 27px;
    font-weight: bold;
}







/* SCREEN SIZE VARIANTS */
/* where right side is gone */
@media (max-width: 1200px) {
    .about-us p {
        width: 600px;
    }

    .about-us h2 {
    }
}


/* 768 */
/* where both sides are gone */
@media (max-width: 865px) {
    .about-us p {
        width: 400px;
    }

    .about-us h2 {
    }
} 



/* for mobile */
/* 360px for my android */
/*@media (pointer: coarse)*/
@media (max-width: 450px) {
    #privacy-policy, #terms-and-conditions, #security-policy {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-us p {
        width: 300px;
    }

    .about-us h2 {
    }
}