
/* Ensures the body takes the full height of the viewport and is scrollable */
html,
body {
  height: 100%;
  overflow-y: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  /* Enables smooth touch scrolling */
}