/* styles.css */

.FlexContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    background-color: #ffffff;
    overflow: auto;
    flex-direction: row;
}

.FlexContainer div {
    width: 80%;
    height: 100%;
    margin: 5px;
    background-color: #ffffff;
}
