body {
    max-width: 700px;
    text-align: center;
    box-sizing: border-box;
    margin: 30px auto;
    padding: 50px;
    border: 7px solid #48cd31;
    background-color: #87ceeb;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

nav > ul {
    list-style: none;
}

nav > ul > li {
    display: inline-block;
}

nav > ul > li::after {
    content: " | ";
    color: black;
}

nav > ul > li:last-child:after {
    content: "";
    color: black;
}

nav > ul > li > a {
    font-size: 18px;
    font-weight: bold;
    color: #28aa7c;
    text-decoration: #28aa7c underline;
}

div {
    text-align: left;
}

div > p {
    text-align: justify;
    line-height: 1.8;
}

img {
    width: 250px;
    float: right;
    margin: 0 0 20px 20px;
}

@media screen and (max-width: 760px) {
    body {
        margin: 30px;
    }
}

/* Temporary CSS — links styled without reference */
.quickfix {
    color: white;
    text-decoration: none;
}

nav.header-nav > ul > li:not(:first-child) > a:hover,
nav.footer-nav > ul > li > a:hover {
    color: #4acc99;
    text-decoration: #4acc99 underline;
}