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;
}

.blog-content {
    background-color: #330000; /* Dark maroon for readability */
    border: 4px solid #ff0000;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; /* Left-align for better reading */
    color: #ffd1d1; /* Soft red for text */
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content a {
    color: #ff4d4d;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content a:hover {
    color: #ffffff;
    text-shadow: 1px 1px 2px #ff0000;
}

footer p {
    font-size: 12px;
    color: #800000;
    margin-top: 40px;
}