@font-face {
    font-family: 'Atkinson Hyperlegible';
    src: url('/assets/fonts/Atkinson-Hyperlegible-Bold-102.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('/assets/fonts/Atkinson-Hyperlegible-BoldItalic-102.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('/assets/fonts/Atkinson-Hyperlegible-Italic-102.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('/assets/fonts/Atkinson-Hyperlegible-Regular-102.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Berkeley';
    src: url('/assets/fonts/BerkeleyMono-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Berkeley';
    src: url('/assets/fonts/BerkeleyMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
  font-family: "Atkinson Hyperlegible", sans-serif;
}

nav h1:hover {
  text-decoration: underline;
}

.active {
  font-weight: bold;
  text-decoration: underline;
}

nav a:hover {
  text-decoration: underline;
}

h2 {
  font-weight: bold;
}

@media (min-width: 430px) {
  /* make it so navbar items are stacked atop each other */
  .navbar-nav {
    display: flex;
    align-items: center;
    margin: 10px 0px 10px 0px;
  }
  .nav-item {
    display: block;
    font-weight: bold;
  }
}