body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    padding: 1rem;
}

.horizontal-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    height: 100vh;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.scroll-section {
    flex: 0 0 auto;
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.artwork {
    padding: 0;
}

.artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    background-color: white;
    max-width: 50vw;
}

.intro, .conclusion {
    background-color: #333;
    color: white;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.horizontal-scroll-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media (max-width: 768px) {
    .text {
        max-width: 80vw;
    }
}