body {
    background-color: #d9e3ea;
    font-family: Georgia, serif;
}

#page {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding: 20px;
    border: 3px solid black;
}

h1 {
    text-align: center;
    color: navy;
    font-family: Arial, sans-serif;
}

#menu {
    background-color: #1f3d5a;
    padding: 15px;
    text-align: center;
    border: 2px solid black;
    margin-bottom: 20px;
}

/* Five anchor states for menu links */
#menu a:link {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

#menu a:visited {
    color: lightgray;
}

#menu a:hover {
    color: yellow;
    text-decoration: underline;
}

#menu a:active {
    color: orange;
}

#menu a:focus {
    outline: 2px solid white;
}

#story {
    border: 2px solid gray;
    padding: 20px;
    overflow: auto;
}

#story img {
    float: right;
    width: 360px;
    margin-left: 20px;
    margin-bottom: 10px;
    border: 2px solid black;
}

#story p {
    font-size: 18px;
    line-height: 1.5;
}

.continue:link {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.continue:visited {
    color: blue;
}

.continue:hover {
    color: red;
    text-decoration: underline;
}

.continue:active {
    color: purple;
}

.continue:focus {
    outline: 2px solid red;
}