* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: green;
  color: white;
  padding: 20px 25px;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
}


.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px; 
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}


.menu {
  display: none;
  flex-direction: column;
  background: #444;
  position: absolute;
  top: 60px;
  right: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.menu a {
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  transition: background 0.3s;
}

.menu a:hover {
  background: #555;
}


.menu.active {
  display: flex;
}
