.fade-out {
  opacity: 0;
}

.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

.menu {
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #1c1f2e;
  border: 1px solid #333;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  min-width: 150px;
}

.menu a {
  color: white;
  padding: 12px;
  text-decoration: none;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.menu a:last-child {
  border-bottom: none;
}

.menu a:hover {
  background-color: #2a2d40;
}
