#contentWrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

#contentBody {
    width: 100%;
    max-width: 1200px;
}


section.basic {
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    color: var(--text);
}

section.basic p {
    max-width: 1000px;
}

section.basic img {
    border-radius: 15px;
    margin-bottom: 2rem;
}


.titleText {
    font-size: 2.4rem;
    font-weight: 650;
    margin: 2rem 0;
    margin-bottom: 0;
}

.sectionTitleText {
    font-size: 1.6rem;
}


.sidebyside {
    display: flex;
    gap: 4rem;
}

.sidebyside img {
    width: 100%;
}

.sidebyside>* {
    flex: 1 1 50%;
}




/* RESPONSIVE */



@media (max-width: 600px) {

    section.basic {
        margin: 0 1rem;
    }

    .titleText {
        font-size: 1.8rem;
    }

    .sectionTitleText {
        font-size: 1.2rem;
    }

    .sidebyside {
        flex-direction: column;
        gap: 1rem;
    }
}