.nav-bar * {
  box-sizing: border-box;
  color: rgb(240, 186, 76);
}
.nav-bar {
  display: flex;
  align-items: center;
  height: 130px;
}
#menu,
#close {
  display: none;
  font-size: x-large;
  cursor: pointer;
  position: absolute;
  top: 0;
}
#menu {
  left: 5px;
}
#close {
  right: 5px;
}
.nav-bar .left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 40%;
  overflow: hidden;
  position: relative;
}
.nav-bar .left a {
  text-decoration: none;
  padding: 5px;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.left a:hover {
  color: rgb(62, 50, 26);
  font-weight: bold;
}
.nav-bar .middle {
  flex: 20%;
  text-align: center;
}
.middle .logo a img {
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transform: translateY(18%);
}
.nav-bar .right {
  flex: 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.nav-bar .right > div {
  display: flex;
  justify-content: space-evenly;
}
.right > div > div {
  margin: auto 4px;
}

@media screen and (max-width: 810px) {
  .nav-bar {
    flex-direction: column;
    height: auto;
  }
  .nav-bar .middle a img {
    transform: translateY(0);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.304);
  }
  .nav-bar .right {
    width: 100%;
    text-align: center;
  }
  #menu,
  #close {
    display: inline-block;
  }
  .nav-bar .left {
    flex-direction: column;
    justify-content: start;
    text-align: center;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: white;
    padding-top: 60px;
    transition: 0.5s;
  }
  .nav-bar .left a {
  margin-bottom: 25px;
  }
}
