body {
    background: #0b0f1a;
    color: #e0e6f0;
    font-family: Arial, sans-serif;
    padding: 20px;
}

h1 {
    color: #4fc3f7;
}

.post {
    background: #12182a;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

a {
    color: #4fc3f7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post h2 {
    margin-bottom: 5px;
}

.post:hover {
    transform: scale(1.01);
    transition: 0.2s;
}