#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%;
}

.productButton {
    display: block;
    max-width: fit-content;
    min-width: 160px;
    align-self: center;
    border-radius: 5px;
    border-color: var(--primary);
    border-width: 2.4px;
    border-style: solid;
    padding: 0.4rem 1.5rem;
    height: fit-content;
    transition: background-color 0.5s ease-in-out, color 0.4s ease-in-out;
    text-align: center;
}

.productButton:hover {
    background-color: #292929;
    color: var(--textInverted);
}


/* 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;
    }
}