body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Fira Code', sans-serif;
    background-color: #FFF;
}

.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    height: 100px; /* Adjust based on your logo's size */
    width: auto;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Prevent vertical scrolling */
    white-space: nowrap; /* Ensure slides are in a single line */
    scroll-snap-type: x mandatory; /* Optional: enhances the scroll experience */
}

.slide {
    max-width: none; /* Override previous max-width */
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block; /* Display slides inline */
    position: relative; /* Adjusted from absolute to relative */
    scroll-snap-align: start; /* Optional: enhances the scroll experience */
}

@media (orientation: portrait) {
    /* Adjustments for mobile devices */
    .slide-container {
        height: auto; /* Adjust height to fit content */
    }

    .slide {
        max-height: none; /* Allow slides to define their own height */
        width: 100%; /* Full width of the container */
    }
}
