body {
  margin: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ae445a;
  padding: 10px 20px;
}
.navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
}
.navbar a:hover {
  background-color: #5b474bb1;
  border-radius: 5px;
}
.navbar .logo {
  font-size: 50px;

  font-weight: bold;
  color: white;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin: 0 10px;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
  }
}
