html {
    scroll-padding-top: 3.75rem;
    scroll-snap-type: y mandatory;
}

section {
    min-height: 100vh;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.parallax {


    /* Set a specific height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}