body {
    background-color: #e8ddb5;
    color: #111;
    font-family: 'Libre Baskerville', serif;
    margin: 0;
}

/* Paper */
.paper {
    width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #f4ecd8;
    border: 2px solid #111;
}

/* Masthead */
.masthead {
    text-align: center;
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
}

.masthead h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    letter-spacing: 6px;
    margin-bottom: 0;
}

.masthead p {
    font-size: 14px;
    margin-top: 5px;
}

/* Navigation */
.nav {
    text-align: center;
    margin: 10px 0;
    border-bottom: 1px solid #111;
    border-top: 1px solid #111;
    padding: 8px 0;
}

.nav a {
    margin: 0 12px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.nav a:hover {
    text-decoration: underline;
}

/* Section Titles */
h2 {
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
    margin-top: 25px;
    font-size: 22px;
}

/* Paragraphs */
p {
    text-align: justify;
    line-height: 1.6;
}

/* Columns */
.columns {
    display: flex;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.column {
    width: 50%;
    padding: 15px 20px;
}

.column:first-child {
    border-right: 1px solid #111;
}

/* Editorial */
.editorial {
    margin-top: 20px;
}

/* Drop Cap */
.dropcap::first-letter {
    font-size: 48px;
    float: left;
    margin-right: 8px;
    font-family: 'Playfair Display', serif;
}

/* Footer */
.footer {
    text-align: center;
    border-top: 1px solid #111;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 12px;
}