


/*HOMEPAGE LINK - RABBIT*/
.image-link-container {
    /* Set the container position relative so the text can be positioned absolutely within it */
    position: relative;
    /* Optional: display as block for better control over dimensions */
    display: inline-block;
    width: fit-content;
    height: fit-content;
    box-sizing: border-box;
    z-index: 99; /* Lower z-index for the back layer */
   

}

.image-text {
    /* Position the text absolutely within its parent container */
    position: absolute;
    /* Adjust these values to position the text exactly where you want */
    top: 85%;
    left: 60%;
    /* The transform is used to center the text precisely */
    transform: translate(-50%, -50%);
    /* Optional: styling for readability */
    color: Black; /* Example text color */
    background-color: rgba(0, 0, 0, 0); /* Example background for readability */
    padding: 10px;
    font-size: 15px;
    text-align: center;
    font-family: "Courier New", monospace; /* Change the font family */
 
}

/* Optional: Add hover effect to the text or the link */
.image-link-container:hover .image-text {
    background-color: rgba(0, 0, 0, 0);
    color: #cc1d10;
    font-family: 'Brush Script MT', cursive; /* Change the font family */
}