* {

    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.container__wrapper {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}



.slides {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;


}

.slides img {
    width: 100%
}