.parallax-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: white;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-position: center;
}

@media (max-width: 768px) {
    .parallax-layer {
        object-fit: cover;
    }
}

@media (min-width: 769px) {
    .parallax-layer {
        object-fit: contain;
    }
}

.parallax-title {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 5rem;
    font-weight: bold;
    z-index: 17;
    top: 50%;
    transform: translateY(-50%);
}
