.nav-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 10px;
  align-items: center;
  width: 100%;
  background-color: transparent;
}

.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-container > ul {
  list-style: none;
  display: flex;
}

.nav-container > ul > li > a {
  color: black;
  text-decoration: none;
  padding-right: 20px;
}

.nav-container > ul > li > a:not(:last-child) {
  padding-right: 20px;
}

.fa-bars {
  color: white;
  /* border: solid 1px black; */
  background-color: rgb(4, 108, 4);
  z-index: 11;
}

@media only screen and (max-width: 800px) {

  .nav-row{
    position: fixed;
    right: 0;
    top: 0;
    background-color: white;
    padding: 10px;
    z-index: 10;
  }

  .nav-container > ul {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    flex-direction: column;
    background-color: black;
    width: 100%;
    height: 100vh;
    z-index: 10;
    place-content: center;
    text-align: center;
  }

  .nav-container > ul > li {
    margin-top: 25px;
  }

  .nav-container > ul > li > a {
    color: white;
    font-size: 24px;
  }
}
