/* Centred Text CSS */

.centred_text {
    margin: 140px auto 120px auto;
}

.centred_text__text {
    font-size: 20px;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 775px;
    text-align: center;
}

@media only screen and (max-width: 570px) {

    .centred_text {
        margin: 80px auto;
    }

    .centred_text__text {
        text-align: justify;
    }
}