body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2cdcd;
}

.image-container {
    display: flex;
    gap: 80px; /* Space between the images */
}

.image-wrapper {
    position: relative;
    width: 200px; /* Adjust image size */
    height: 200px;
    display: inline-block;
    text-decoration: none; /* Remove underline for links */
}

/* Default Image */
.default-image {
    position: absolute;
    width: 258px;
    height: 251px;
    object-fit: cover;
}

/* Hover Image */
.hover-image {
    position: absolute;
    width: 258px;
    height: 251px;
    object-fit: cover;
    opacity: 0; /* Hidden by default */
}

/* Show Hover Image on Hover */
.image-wrapper:hover .default-image {
    opacity: 0; /* Hide default image */
}

.image-wrapper:hover .hover-image {
    opacity: 1; /* Show hover image */
}
