body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #eee;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header,
section,
footer {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    flex: 0 0 2em;
}

header {
    flex-direction: row;
}


img {
    max-width: 100%;
    height: auto;
}

.logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-content: center;
    margin-right: 20px;
}

@media screen and (min-width: 600px) {
    section {
        flex-direction: row;
    }

    .logo {
        width: 85px;
        height: auto;
    }
}

blockquote {
    font-style: italic;
}

.project-row {
    display: flex;
    align-items: center;
}

.project {
    margin: 10px;
    max-width: 100px;
}

.project img {
    filter: grayscale(1);
    max-height: 60px;
}

footer {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

h1,
h2 {
    align-content: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Sorts Mill Goudy', serif;
    flex: none;
}

h2 {
    width: 150px;
}

h3,
h4,
h5,
h6,
li,
p {
    font-family: 'Lato', sans-serif
}