.fBase {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    /* max-width: 100%; */
}

.fContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    max-width: 768px;
    padding: 1rem;
}

.fRow {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 100%;
}

.fCol {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    max-width: 100%;
}