.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}

.post {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.post h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.post img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post p {
    margin-bottom: 10px;
}

.post a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.post a:hover {
    text-decoration: underline;
}
