body {
    background-color: black;
    color: #00ff00;
    font-family: monospace;
    margin: 0;
}

header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #00ff00;
}

.container {
    padding: 20px;
}

.post {
    margin-bottom: 20px;
}

a {
    color: #00ff00;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effect */
a:hover {
    font-size: 1.1em;
    text-shadow: 0 0 5px #00ff00;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
}