* {
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory !important;
}

section {
  /* height: 100vh !important; */
  scroll-snap-align: start !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Media query untuk layar desktop */
@media (min-width: 768px) {
  html {
    scroll-snap-type: none !important; /* Matikan scroll snap untuk layar desktop */
  }
}