/* base.css */

/* Reset and box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Full height via percentages (safer for mobile than 100vh) */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

/* Set up base font, background, and text color */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0d47a1 0%, #26c6da 100%);
  color: #ffffff;
  overflow-x: hidden;

}

/* Simple link style */
a {
  color: inherit;
  text-decoration: none;
}
