.menu-btn {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #333;
  color: white;
  font-size: 24px;
}

.side-menu {
  position: fixed;
  left: -300px;
  top: 0;
  width: 280px;
  height: 100%;

  background: #151515;

  transition: 0.25s;

  padding: 20px;

  z-index: 99;

  display: flex;
  flex-direction: column;
}

.side-menu.open {
  left: 0;
}

.side-menu h2 {
  margin-top: 0;
}

.side-menu button {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #333;
  color: white;
  text-align: left;
  font-size: 16px;
}

.menu-empty {
  height: 12px;
}

.close-btn {
  background: #444 !important;
}

.menu-spacer {
  flex: 1;
}

.menu-logo {
  text-align: center;
  padding: 10px 0 15px 0;
}

.menu-logo img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
}

.menu-logo-text {
  margin-top: 8px;
  color: #888;
  font-size: 13px;
}