a {
  text-decoration: none;
}

.menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f0e0e;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
}

a.menu-back {
  text-decoration: none;
  cursor: pointer;
  color: #ed780f;
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
}

.menu-back-sm {
  position: absolute;
  top: 114px;
  left: 40px;
}

.menu-back-lg {
  display: none;
}

.menu-back img {
  height: 20px;
}

.menu {
  width: 100%;
  height: 100%;
  justify-content: center;
}

a.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 71px;
  font-family: 'Kanit', sans-serif;
  font-size: 33px;
  color: #ed780f;
  border-top: 1px solid #ed780f;
  text-decoration: none;
  text-align: center;
}

.menu-btn:last-of-type {
  border-bottom: 1px solid #ed780f;
}

@media only screen and (min-width: 1200px) {
  .menu-back-sm {
    display: none;
  }

  .menu-back-lg {
    display: block;
    width: 271px;
    position: relative;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  a.menu-btn {
    height: 76px;
    font-size: 39px;
  }
}

@media only screen and (min-width: 1600px) {
  .menu-back-lg {
    width: 271px;
  }

  a.menu-btn {
    height: 105px;
    font-size: 50px;
  }
}
