* {
    box-sizing: border-box;
}

.subtitle {
    font-size: 22px;
    color: #444444;
    margin-top: -10px;
    margin-bottom: 40px;
    font-style: italic;
}

body {
    background-color: #fcfcfc;
    color: #222222;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;

    width: 85%;
    margin: 40px auto;
    padding: 0;

    font-size: 19px;
}

h1, h2, h3 {
    color: #800020;
    font-weight: normal;
    margin-top: 1.5em;
}

h1 {
    font-size: 32px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

h2 {
    font-size: 24px;
}

p {
    font-size: 18px;
    text-align: left;
}

a {
    color: #b8265a;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.15s ease;
}

a:hover {
    color: #e64784;
    border-bottom: 1px solid #e64784;
}

/* Images & Layout */
.photos img {
    width: 25%;
    min-width: 200px;
    float: right;
    margin: 0 0 20px 40px;
    border-radius: 2px;
}

main::after {
    content: "";
    display: table;
    clear: both;
}

.site-footer {
    margin-top: 100px;
}

.footer-divider {
    border: 0;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 15px;
}

.footnote {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.interests-list {
    margin: 20px 0;
    padding-left: 25px;
}

.interests-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.intro-text {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
}

.main-nav {
    margin-top: 30px;
}

.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-bottom: 14px;
}

.main-nav a {
    font-size: 19px;
    display: inline-block;
}

@media (max-width: 600px) {
    body {
        width: 90%;
        margin: 20px auto;
        font-size: 18px;
    }

    .photos img {
        float: none;
        display: block;
        width: 60%;
        max-width: 220px;
        margin: 0 auto 30px auto;
    }
}