body {
    background-color: #1a003c;
    color: #fff;
    font-family: 'Courier New', monospace;
    padding: 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}


.post {
    background: #340a4b;
    border: 3px double #ff6eb5;
    box-shadow: 4px 4px 0 #cc00cc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.post h2 {
    font-size: 24px;
    color: #ff6eb5;
    margin-bottom: 10px;
}

.post .date {
    font-size: 14px;
    color: #ccccff;
    margin-bottom: 15px;
    display: block;
}

.post img {
    max-width: 100%;
    border: 2px solid #ff6eb5;
    margin-bottom: 25px;
    margin-top: 15px;
    margin-right: 10px;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.image-row img {
    width: 50%;
    max-width: 500px;
    height: auto;
    border: 2px solid #ff6eb5;
    display: block;
}


.post p {
    line-height: 1.6;
    color: #eee;
}

a {
    color: #ff6eb5;
    text-decoration: none;
}

a:hover {
    color: #ff00ff;
    text-decoration: underline;
}