body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.post img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.8em;
}

.title {
    display: block;
    text-align: center;
    padding: 10px 0;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.title:hover {
    color: #007bff;
}