<style>
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    display: inline-block;
}

.hover-text {
    font-size: 14px;
    cursor: pointer;
    transition: color 1.3s ease;
}

.hover-text:hover {
    color: black; /* Hover rengi değişir */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: black; /* Koyu arka plan */
    text-align: center;
    padding: 20px;
    color: white;
    border-radius: 10px;
    box-sizing: border-box;
}

.image-overlay img {
    width: 100%;
    border-radius: 10px;
}

.overlay-text {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
}

.container:hover .image-overlay {
    display: flex;
}
</style>
