body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta la altura según tus necesidades */
    overflow: hidden;
}

.parallax {
    background-image: url('/img/home-bg-img.png'); /* Reemplaza 'tu-imagen.jpg' con la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px;
    color: #fff; /* Ajusta el color de texto según tu diseño */
}

@media screen and (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
}