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

.container {
    width: 80%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
}

.menu {
    background-color: #333;
    padding: 15px;
    border: 3px solid black;
    margin-bottom: 20px;
    text-align: center;
}

.menu a:link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.menu a:visited {
    color: lightgray;
}

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

.menu a:active {
    color: red;
}

.menu a:focus {
    outline: 2px solid orange;
    color: orange;
}

.news-story img {
    float: right;
    width: 250px;
    margin-left: 15px;
    margin-bottom: 10px;
}

.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;
}

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