*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-navy-900);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-teal-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-teal-500);
}

a:focus-visible {
  outline: 2px solid var(--color-teal-500);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-950);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 var(--space-4);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 var(--space-4);
}

h3 {
  font-size: 1.125rem;
  margin: 0 0 var(--space-2);
}

ul {
  padding-left: 1.25rem;
}

.ms-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ms-main {
  flex: 1;
}

.ms-skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  background: var(--color-teal-500);
  color: var(--color-white);
}

.ms-skip:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
