@font-face {
  font-family: 'Helvetica Black';
  src: url('fonts/helvetica-black.woff2') format('woff2'),
    url('fonts/helvetica-black.woff') format('woff');
}

@font-face {
  font-family: 'Atlas Regular';
  src: url('fonts/atlas-regular.woff2') format('woff2'),
    url('fonts/atlas-regular.woff') format('woff');
}

:root {
  --blue: #00306d;
  --white: #fff;
  --sans: 'Helvetica Black', sans-serif;
  --mono: 'Atlas Regular', monospace;
}

::-moz-selection {
  color: var(--white);
  background: var(--blue);
}

::selection {
  color: var(--white);
  background: var(--blue);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  background-color: var(--white);
}
a {
  text-decoration: none;
  color: var(--blue);
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--sans);
}

button {
  cursor: pointer;
}
