html,
body {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  background-color: rgb(139, 26, 26);
}

nav {
  display: flex;
  width: 100%;
  font-family: "Oswald", sans-serif;
}
nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 1.2em;
  background-color: rgb(255, 255, 255);
  color: rgb(139, 26, 26);
  padding: 0.5em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav h1 {
  text-transform: uppercase;
  font-size: 1.5em;
  margin-left: 1em;
  color: rgb(255, 255, 255);
}
nav:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr auto auto;
  border-bottom: 2px solid rgb(34, 9, 1);
}
nav:nth-of-type(1) a {
  background-color: rgb(34, 9, 1);
  color: rgb(255, 255, 255);
  width: -moz-fit-content;
  width: fit-content;
}
nav:nth-of-type(1) a:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(139, 26, 26);
}
nav:nth-of-type(2) {
  padding: 1em;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  position: relative;
}
nav:nth-of-type(2) h1 {
  position: absolute;
  left: 1em;
  font-size: 2em;
}
nav:nth-of-type(2) a {
  margin-left: 1vw;
  background-color: rgb(34, 9, 1);
  color: rgb(255, 255, 255);
}
nav:nth-of-type(2) a:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(139, 26, 26);
}/*# sourceMappingURL=nav.css.map */