body {
    font-family: Arial, sans-serif;
    background-color: #eef2f7;
    margin: 0;
    padding: 20px;
}

.page {
    width: 900px;
    margin: auto;
    background-color: white;
    padding: 25px;
    border: 2px solid #bfc7d1;
}

h1 {
    text-align: center;
    color: #1f3c88;
    margin-bottom: 20px;
}

.menu {
    background-color: #dbe7f5;
    border: 2px solid #7a8ca5;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.menu a {
    margin: 0 15px;
    font-weight: bold;
}

/* Menu link states */
.menu a:link {
    color: #1f3c88;
    text-decoration: none;
}

.menu a:visited {
    color: #5a3e85;
    text-decoration: none;
}

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

.menu a:active {
    color: green;
    text-decoration: underline;
}

.story-box {
    border: 2px solid #c7c7c7;
    padding: 20px;
    min-height: 260px;
    background-color: #fafafa;
}

.story-box img {
    float: right;
    width: 280px;
    height: 190px;
    margin-left: 20px;
    margin-bottom: 10px;
    border: 2px solid #666;
}

.story-box h2 {
    color: #333;
    margin-top: 0;
}

.story-box p {
    color: #444;
    line-height: 1.7;
}

/* Continue reading link */
.continue-link:link,
.continue-link:visited {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

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

.continue-link:active {
    color: darkred;
}

/* Footer button */
.footer {
    text-align: center;
    margin-top: 30px;
}

.footer a:link,
.footer a:visited {
    background-color: #1f3c88;
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.footer a:hover {
    background-color: #16306d;
    color: white;
}

.footer a:active {
    background-color: #0f214c;
}