.blog-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-post {
    margin: 10px;
    width: 50%;
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);
}

.date {
    font-size: 0.8em;
    color: #666;
}


@media (max-width: 1200px) {
    .blog-post {
        width: 90%;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.image-small {
    width: 50%;
    height: auto;
}