.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 80px;
    right: 32px;
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }
}
