html, body {
  overflow: hidden;
  height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    background-color:rgb(253,253,253);
}
 
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.container {
    margin: 0;
    overflow: scroll;
    height: auto;
    scroll-snap-type: y mandatory; /* Vertikal Scrollen und Snap Points streng einhalten */

}


section {
    position: sticky;

    height: 100vh; 
  scroll-snap-align: start; /* An der Oberkante jeder Sektion soll gestoppt werden */
}


