body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
    opacity: 1;
}

.responsive-image {
    width: 85%;
    height: auto;
    border-radius: 15px;
}

.hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #085ba5;
    color: white;
    padding: 10px;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s;
    opacity: 1;
    width: 84%;
    
}




/*.image-container:hover .hover-text {
    opacity: 1;
}*/

@media (max-width: 600px) {
    .responsive-image {
        width: 85%;
    }
}
