.image-container {
    margin-top: -100px;
    position: relative;
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según sea necesario */
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 625px;
    object-fit: cover;
}


.image-container h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white !important;
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .image-container h1 {
        white-space: normal;
    }
}