.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.section1 {
    background-color: #ffcccb;
}

.horizontal-scroll-section {
    background-color: #FB8500;
    overflow: hidden;
}

.horizontal-content {
    display: flex;
    width: 400vw;
    height: 100vh;
}

.item {
    flex: 0 0 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item img {
    max-width: 100%;
    max-height: 100%;
}

.section3 {
    background: linear-gradient(180deg, #023047, #002835);
}