* {
    font-family: monospace;   
}

#master-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: antiquewhite;
}

#left-sidebar {
    background-color: rgb(147, 147, 255);
    margin: 10px;
    width: 25%;
}

#center-section {
    background-color: rgb(183, 107, 255);
    margin: 10px;
    width: 50%;

}

#right-sidebar {
    background-color: rgb(255, 139, 139);
    margin: 10px;
    width: 25%;

}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}