body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* MENU DIV */
.menu {
    background-color: #333;
    padding: 15px;
    text-align: center;
}

/* Anchor states for menu */
.menu a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* 4 states */
.menu a:link {
    color: white;
}

.menu a:visited {
    color: lightgray;
}

.menu a:hover {
    color: yellow;
}

.menu a:active {
    color: red;
}

/* CONTENT DIV with border */
.content {
    padding: 20px;
    border: 3px solid black;
    margin: 20px;
}

/* FLOAT IMAGE */
.news-img {
    float: right;
    width: 300px;
    margin: 10px;
}

/* SPECIAL LINK (NYT) */
.read-more {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: blue;
    text-decoration: none;
}

.read-more:hover {
    color: red;
    text-decoration: underline;
}