body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.image-container {
    position: relative;
}

.block {
    height: 100vh; /* Each block takes up the full viewport height */
    position: relative;
    opacity: 1;
}
.scroll-image {
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
}
.scroll-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: bottom center;
    display: block; /* Hide all images initially */
    /* opacity: 0; /* Start with images hidden */ */
}

.title {
    position: fixed;
    top: 100px;
    right: 25px;
    width: 50%;
    /* transform: translate(-50%, -50%); */
    font-size: 60px;
    color: #1b8bb6;
    font-weight: 800;
    opacity: 0;
    pointer-events: none; /* Prevent the title from blocking interactions */
}

.content {
    padding: 20px;
    background-color: #f0f0f0;
    min-height: 100vh;
    opacity: 0;
    z-index: 9999;
}
