.image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.image-container img {
    width: 100%;
    height: auto;
}

.top-text {
    position: absolute;
    top: 35%;
    left: 55%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 1;
}


.bottom-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

@media (max-width: 768px) {
    .top-text {
        font-size: 1.5rem;
    }
    .bottom-text {
        font-size: 1rem;
    }
}
