/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: 'Terminus';
  src: url('fonts/Terminus (TTF) 500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Terminus';
  src: url('fonts/Terminus (TTF) Bold 700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Terminus';
  src: url('fonts/Terminus (TTF) Italic 500.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Terminus';
  src: url('fonts/Terminus (TTF) Bold Italic 700.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

body {
  background-color: #000;
  color: #e02c00;
  font-family: 'Terminus', monospace;
  font-size: 16px;
  line-height: 1.4;
}

.center {
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 20px;
}

.center img {
  margin: 35px 0;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #260800;
  display: flex;
}

.navbar ul li a {
  display: block;
  color: #e02c00;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar ul li a:hover {
  background-color: #501000;
}

.navbar ul li .active {
  background-color: #501000;
}
