.latest-posts-next, .latest-posts-prev{
	z-index:2;
	border:solid 1px;
}
.image-container img {
	/* Set the object-fit property to cover */
	object-fit: cover;
	/* Set the width and height to half of the imageContainer */
	width: calc(150% - 10px);
	height: calc(150% - 10px);
	/* Add some margin for spacing */
	margin: 5px;
}
/* Select the close button element */
.image-container .close-button {
    /* Set the position to absolute */
    position: absolute;
    /* Set the top and right properties to 0 */
    top: 0;
    right: 0;
    /* Set the width and height to 30px */
    width: 30px;
    height: 30px;
    /* Set the background color to transparent */
    background-color: white;
    /* Set the border to none */
    border: solid 1px;
	border-radius:5px;
    /* Set the font size to 20px */
    font-size: 20px;
    /* Set the cursor to pointer */
    cursor: pointer;
    /* Set the transition property for smooth animation */
    transition: all 0.3s ease-in-out;
}

/* Select the close button element when hovered */
.image-container .close-button:hover {
    /* Rotate the button by 90 degrees */
    transform: rotate(90deg);
    /* Change the text color to red */
    color: red;
}

