body {
    background-color: #1b1d2f;
    font-family: "Spectral", sans-serif;
    margin: 0;
    padding: 0;
}


a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

header {
    background-color: #121212;
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #fff;
    margin-bottom: 50px;
}

header h1 {
    font-size: 91px;
    margin: 0;
    font-family: "Scary Monday", sans-serif;

    color: #ff0000;
    font-weight: 100;
}

.nav {
    display: flex;
    justify-content: center;
    font-family: "Zombie Slayer", sans-serif;
    font-size: 1.2em;
}

.nav a {
    font-size: 1em;
    padding: 1px 10px;
    border: 1.5px solid #fff;
    border-radius: 5px;
    text-decoration: none;
}

.nav a:hover {
    background-color: #e5a5b1;
    color: #ff0082;
}

/* Main Content Section */
.content {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.blog-post {
    background-color: #484756;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.blog-post h2 {
    font-size: 2.5em;
    color: #000bff;
}

.blog-post p {
    font-size: 1.1em;
    color: #d1d1d1;
    margin-bottom: 15px;
}

.blog-post a {
    color: #121212;
    font-weight: bold;
}

.blog-post a:hover {
    color: #000bff;
}