body {
    background-color: #000000;
    color: #ff0000;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    margin: 0;
    padding: 20px;
    image-rendering: pixelated;
}

.navbar {
    background-color: #800000;
    border-bottom: 4px solid #ff0000;
    padding: 10px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar li {
    display: inline;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #ff0000;
    background-color: #000000;
    transition: background-color 0.3s, transform 0.2s;
    image-rendering: pixelated;
}

.navbar a:hover {
    background-color: #ff0000;
    color: #000000;
    transform: scale(1.1);
}

h1 {
    font-size: 28px;
    text-shadow: 2px 2px 4px #800000;
    margin-bottom: 30px;
}

.blogs-container {
    background-color: #330000; /* Dark maroon */
    border: 4px solid #ff0000;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Center content overall */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.blog-item {
    margin-bottom: 30px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #800000;
}

.blog-title a {
    color: #ff4d4d; /* Brighter red for base color to stand out more */
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.blog-title a:hover,
.blog-title a:active {
    color: #000000; /* High contrast black on hover/click */
    background-color: #ffffff; /* White background for noticeable change */
    box-shadow: 0 0 10px #ff0000; /* Red glow for emphasis */
    padding: 5px 10px; /* Slight padding to enhance the button-like feel */
}

.blog-desc {
    font-size: 14px; /* Compact size for descriptions */
    color: #ffffff; /* Brighter white for better contrast and readability */
    text-align: left; /* Left-align body text for readability */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8; /* Increased spacing between lines for easier reading */
}

footer p {
    font-size: 12px;
    color: #800000;
    margin-top: 40px;
}