/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Menu Styling */
.menu {
    background-color: #333;
    padding: 10px;
    border: 2px solid black;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    padding: 8px;
}

/* Anchor states for menu */
.menu a:link {
    color: white;
}

.menu a:visited {
    color: lightgray;
}

.menu a:hover {
    color: yellow;
    text-decoration: underline;
}

.menu a:active {
    color: red;
}

/* News Container */
.news-container {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid black;
    width: 70%;
}

/* Image float */
.news-container img {
    float: right;
    width: 280px;
    margin-left: 20px;
    border-radius: 8px;
}

/* Read More Link */
.read-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: blue;
    text-decoration: none;
}

.read-more:hover {
    color: red;
    text-decoration: underline;
}