
.navbar {
  width: 60%;
  background-color: var(--accent);
  color: white;
  padding: 10px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .navbar {
    width: 100%;
  }
}

.navbar a {
  text-decoration: none;
}

.navbar li {
  list-style-type: none;
  font-size: 20px;
}

.navbar ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logo {
  transition: 200ms;
  font-family: monospace;
  font-size: 25px;
  color: var(--dark);
}

.logo:hover {
  color: white;
  transition: 200ms;
}