/* Styles for posts-container */
.posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 25px; /* Gap between posts */
	justify-items: center; /* Horizontally center the items */
	
}

/* Styles for individual post */
.post {
    border: 50px solid #ccc;
    padding: 10px;
    text-align: center;
    width: 600px; /* Fixed width */
    height: 650px; /* Fixed height */
    max-width: 600px; /* Maximum width */
    max-height: 650px; /* Maximum height */
    overflow: hidden; /* Hide content that exceeds the dimensions */
}