/* layout.css */

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.container {
    width: 1200px;
    max-width: 100%;
    padding: 0 30px;
    align-self: center;
}

.column {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    float: none;
}