main {
    /*Flexbox*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}


#text-container {
    /*Flexbox*/
    display: flex;
    flex-direction: column;
}

/*
 * Style on lists.
 */
ul,
ol {
    display: flex;
    flex-direction: column;
    margin: 10px 0px;

    padding: 20px;
    font-size: 1.25em;
}

/*
 * Style of list elements.
 */
li {
    margin: 5px 0px;
}

#text-container span {
    font-size: 1.25em;
}

#text-container h2 {
    font-size: 2.5em;
}

#text-container h3 {
    margin-top: 20px;

    font-size: 2em;

    color: var(--TEXT-COLOR);
}