@import url('https://fonts.googleapis.com/css2?family=Alatsi&display=swap');


body, html {
    margin: 0;
    padding: 0;
    background-color: black;
}

.image-container {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap to each image */
}

.gallery-image {
    flex: none;
    scroll-snap-align: start; /* Snap each image to the start of the viewport */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    display: block;
    margin-left: 60%; /* Adjust the value as needed */
}

/* .marquee {
    position: absolute;
    top: 10px; 
    left: 0;
    width: 100%;
    color: white;
    padding: 10px 0;
    overflow: hidden;
}
.marquee p {
    display: inline-block;
    animation: marquee 10s linear infinite; 
} */


.marquee a {
    color: yellow;
    text-decoration: underline;
    cursor: pointer;
}

/* .pink a:hover {
    color: white;
} */

.marquee {
    height: 26px;
    max-width: 100vw;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Suiss Regular', sans-serif;
    color: #000000;
    background-color: #06a552;
    font-size: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: black;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 90s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused;
}



.marquee a:hover {
    color: yellow;
}

/* @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
} */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 768px) {
    .image-container {
        display: flex;
        justify-content: center; /* Center the images horizontally */
        align-items: 
        ; 
        height: 100vh; 
        margin-right: 90%; /* Adjust the value as needed */

    }

    .gallery-image {
        transform: rotate(-90deg);
        width: 90vh; 
        height: 90vw; 
        object-fit: cover; 
        transform-origin: center; 
        /* margin-top: 10%;  */

    }
}
