nav {
  display: flex;
  background-color: #AC7A3B;
  position: sticky;
  height: 40px;
  top: 0;
  z-index: 100;
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 5px;

  vertical-align: middle;
}

.nav-button {
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;

  button {
    height: 100%;
    background-color: #AC7A3B;
    border-style: solid;
    border-color: #886438;
    border-radius: 5px;
    
    img {
      height: 100%;
    }
  }

  button:active {
    opacity: 0.5;
  }
}

.navbar-container {
  display: none;

  ul {
    list-style: none;
    a {
      color: #FFF3D9;
      text-decoration: none;
    }
  
    a:hover {
      text-decoration: underline;
    }
  }
}

.balance {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(216, 169, 4, 0.82);
  padding: 10px 0;
  z-index: 100;

  a {
    color: #FFF3D9;
    font-weight: bold;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 700px) {
  nav {
    justify-content: center;
  }

  .nav-button {
    display: none;
  }

  .navbar-container {
    display: flex;
    ul {
      li {
        display: flex;
        float: left;
        vertical-align: middle;

        a {
          text-align: center;
          vertical-align: middle;
          padding: 10px;
          font-size: 18px;
          font-weight: bold;
        }
      }
    }
  }
}

@media only screen and (min-width: 1200px) {
  .navbar-container {
    ul {
      display: flex;
      width: 1000px;
      justify-content: space-between;
    }
  }
}
