body {
  margin: 0;
  padding: 0;
}

#menu-container {
  width: 100%;
  display: -ms-grid;
  display: grid;
}

.menu {
  -ms-grid-row: 1;
      grid-row-start: 1;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -ms-grid;
  display: grid;
  gap: 5%;
  justify-items: center;
  background-color: #fbaf21;
  overflow: hidden;
}

.content-text {
  -ms-grid-row: 2;
      grid-row-start: 2;
  margin: 10px auto;
  text-align: center;
  width: 40%;
  height: 2000px;
}

.menu_btn {
  width: 10%;
  -ms-grid-column: 1;
      grid-column-start: 1;
  background: url("../img/menu.png");
  background-repeat: no-repeat;
  background-position: 0 45%;
  border: none;
  cursor: pointer;
}

.bell_btn {
  -ms-grid-column: 3;
      grid-column-start: 3;
  width: 10%;
  background: url("../img/bell.png");
  background-position: 0 45%;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

.menu > h2 {
  text-align: center;
}

.menu-tap, .bell-tap {
  background-color: #fbaf21;
  width: 20%;
  height: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 1;
  opacity: .9;
}

.menu-tap {
  left: -20%;
  -webkit-transition: left .5s ease;
  transition: left .5s ease;
}

.bell-tap {
  right: -20%;
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
}

.menu-out, .bell-out {
  width: 25%;
  background-color: inherit;
}

.menu-out-btn, .bell-out-btn {
  margin-top: 5%;
  width: 100%;
  height: 3%;
  border: none;
  background-color: inherit;
  background-image: url("../img/menu_out.png");
  background-repeat: no-repeat;
  cursor: pointer;
}

.menu-cont, .bell-cont {
  list-style: none;
}

.menu-cont > li, .bell-cont > li {
  margin: 3% 0;
  font-size: 2rem;
}

.menu-cont > li > a, .bell-cont > li > a {
  color: black;
  text-decoration: none;
}

.active_menu {
  left: 0;
}

.active_bell {
  right: 0;
}

@media screen and (max-width: 1024px) {
  .bell_btn, .menu_btn {
    width: 30%;
  }
  .menu-tap, .bell-tap {
    width: 35%;
    height: 100vh;
  }
  .menu-tap {
    left: -35%;
  }
  .bell-tap {
    right: -35%;
  }
  .menu-out-btn, .bell-out-btn {
    height: 8%;
  }
  .active_menu {
    left: 0%;
  }
  .active_bell {
    right: 0%;
  }
}

@media screen and (max-width: 480px) {
  .menu {
    gap: 1%;
  }
  .menu > h2 {
    text-align: center;
  }
  .bell_btn, .menu_btn {
    width: 70%;
  }
  .menu-tap, .bell-tap {
    width: 60%;
    height: 100vh;
  }
  .menu-tap {
    left: -60%;
  }
  .bell-tap {
    right: -60%;
  }
  .menu-out-btn, .bell-out-btn {
    height: 15%;
  }
  .menu-cont > li, .bell-cont > li {
    margin: 3% 0;
    font-size: 1.5rem;
  }
  .active_menu {
    left: 0%;
  }
  .active_bell {
    right: 0%;
  }
}
/*# sourceMappingURL=MenuAndNotice.css.map */