body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #ddd;
    margin: 0;
    padding: 0;
}

.menu {
    background-color: #222;
    padding: 15px;
    text-align: center;
    border: 3px solid #ff4444; /* This is just the easier and compact way of doing border width, style, color. */
}

.menu a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.menu a:link {
    color: #bbb;
}
.menu a:visited {
    color: #aaa;
}
.menu a:hover {
    color: #ff4444;
    text-decoration: underline;
}
.menu a:active {
    color: #ff0000;
}

.news-article {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #181818;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.news-article img {
    width: 40%;
    float: right;
    margin: 0 20px 10px 0;
    border-radius: 10px;
    filter: grayscale(70%) contrast(120%);
    box-shadow: 5px 5px 15px rgba(255, 0, 0, 0.5);
}

.news-article::after {
    content: "";
    display: table;
    clear: both;
}

.news-article h2 {
    color: #ff4444;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.5);
}

.news-article p {
    line-height: 1.6;
    font-size: 18px;
}

.news-article i {
    color: #ff6666;
    font-style: italic;
}

.continue-reading {
    display: block;
    text-align: center;
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: color 0.3s, text-decoration 0.3s;
}

.continue-reading:hover {
    color: #ff4444; 
    text-decoration: underline;
}

.news-article small {
    display: block;
    text-align: center;
    color: #bbb;
    font-size: 14px;
    margin-top: 20px;
}
