.mobile-sidebar {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.4s;
}

.mobile-sidebar-close-btn {
  position: fixed;
  top: 0;
  right: 0;
  color: white;
  width: 70px;
  height: 70px;
  font-size: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 6px gray;
}

.mobile-sidebar-content {
  width: 100%;
  height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-sidebar-item {
  color: white;
  font-size: 24px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .mobile-sidebar {
    display: flex;
    flex-direction: column;
    justify-items: center;
  }

  .mobile-sidebar.show {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 576px) {
  .mobile-sidebar-close-btn {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }
}
