.main {
    display: flex;
    flex-direction: column;
}
.title {
    display: flex;
    font-family: serif;
    font-size: 30px;
    justify-content: center;
    margin: 0 0 10px 0;
}
.description {
    font-size: 18px;
    justify-content: center;
    display: flex;
}
.content_container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin: 0 20px 40px 20px;
}
.section_container {
    display: flex;
    text-align: center;
    justify-content: flex-start;
    flex-direction: column;
}
/* ----------------------------- */
.sections {
    background-color: #F2F2FF;
    font-family: serif;
    font-size: 22px;
    border-radius: 24px;
    margin: 20px 10px 10px 10px;
    padding: 10px 5px 10px 5px;
    width: 350px;
}
.sections:hover {
    background-color: LightGray;
}
.subsections {
    background-color: #F2F2FF;
    font-family: serif;
    font-size: 20px;
    border-radius: 24px;
    margin: 0 10px 10px 10px;
    padding: 10px 5px 10px 5px;
    width: 350px;
}
.subsections:hover {
    background-color: LightGray;
}
