.container {
width: 100%;
height: 100vh;
overflow: auto;
overflow-y: scroll;
scroll-snap-points-y: repeat(100vh);
scroll-snap-type: y mandatory;
will-change: scroll-snap-type;
}
section {
display: flex;
align-items: center;
justify-content: center;
scroll-snap-align: start;
width: 100%;
height: 100vh;
color: #FFF;
background: black;
scroll-snap-align: start;
font-size: 20vw;
&:nth-child(2n + 2){
color: black;
background: yellow;
}
}