
/* BASE GLOBAL STYLES */

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Prata&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: "Prata", serif;
}

.scroll-container {
    height: 100vh;
}

.scroll-container .simplebar-content-wrapper {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.simplebar-content {
    height: 100%;
}

section {
    scroll-snap-align: end;
    scroll-snap-stop: always;
}

