/*
 * Global Reset and Base Styles
 * Establishes consistent baseline across all pages
 */

/* Universal reset and box-model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #e0f2fe;
  background-color: #0f172a;
}

/* Ensure images and other media respect container widths */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Remove default button and link styles */
button,
input,
select,
textarea {
  font: inherit;
}

/* Ensure interactive elements are cursor pointers */
button,
a {
  cursor: pointer;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Improve readability of pre elements */
pre {
  overflow-x: auto;
}
