:root {
    --font: 'Lato', sans-serif;
    --color1: #faf9e8;
    --color2: #2e2e2e;
}

body {
    font-family: var(--font);
    color: var(--color1);
    background-color: var(--color2);
    font-size: 120%;
}

h1 {
    text-align: center;
}

#sections {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.section {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    padding: 10px 10px;
}