html {
  height: 100%;
  width: 100%;
  touch-action: manipulation;
}

body {
  overflow-x: hidden;
}

/* Desktop-first responsive design */
@media (min-width: 1024px) {
  body {
    text-align: left;
  }
}

/* Mobile-specific styles */
@media (max-width: 1023px) {
  body {
    text-align: center;
  }
}