﻿:root {
  --navy: #0f1e33;
  --black: #0a0a0a;
  --steel: #2b3036;
  --red: #e10600;
  --light: #f4f5f6;
  --white: #ffffff;
  --off-grey: #d0d3d6;
  --transition-fast: 0.25s ease-out;
  --transition-med: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--off-grey);
  background-color: #05060a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

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