/* Common CSS */
body,
p,
h1 {
    margin: 0;
    padding: 0;
}

body {
    margin: 20px;
    font-size: 18px;
    line-height: 27px;
    font-family: 'Source Code Pro', sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: green;
}

.max-width {
    margin: 0 auto;
    max-width: 1100px;
}

.text-muted {
    font-size: 12px;
    color: #6c757d;
}

header {
    display: flex;
    padding-bottom: 20px;
    justify-content: space-between;
}

header h1 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

footer {
    display: flex;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e8f3ec;
}

footer h1 {
    font-size: 16px;
    color: #6c757d;
    margin-right: 20px;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

footer p {
    font-size: 12px;
    color: #6c757d;
}

main {
    margin: 0 auto;
    max-width: 1100px;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 18px;
}

p,
li {
    font-size: 16px;
}

li::marker {
    font-size: 18px;
    font-weight: bold;
}

.text-muted {
    font-size: 16px;
    color: #6c757d;
}