*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
}

section:nth-child(2n){
    color: #0f172a;
}

section:nth-child(2n+1){
    background: #0f172a;
    color: white;
}

.app{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
    scroll-snap-type: y mandatory;
}
