html {
  color: white;
  background-color: black;

}

#home {
  font-weight: bold;
  padding: 50px 100px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: aqua;
}

.logo {
  color: black;
  font-size: 22px;
  font-weight: bold;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex: 1;
}

.menu a {
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
}

.menu a:hover {
  background: white;
}

.learnmore {
  background-color: aqua;
  color: black;
  padding: 6px 12px;
  text-decoration: none;
}

.learnmore:hover {
  background: white;
}

#about {
  font-weight: bold;
  padding: 50px 100px;
}

#message {
  font-weight: bold;
  padding: 50px 100px;
}

.mail {
  background-color: aqua;
  color: black;
  padding: 6px 12px;
  text-decoration: none;
}

.mail:hover {
  background: white;
}

.discord {
  background-color: aqua;
  color: black;
  padding: 6px 12px;
  text-decoration: none;
}

.discord:hover {
  background: white;
}

.youtube {
  background-color: aqua;
  color: black;
  padding: 6px 12px;
  text-decoration: none;
}

.youtube:hover {
  background: white;
}