/* @import url("vars.css"); */

.evilnavdiv{
  background: var(--navbg);
}

.navbar {
  display: flex;
  align-items: center;
  position: relative;
  height: 2em;
}


.navbar input[type="checkbox"],
.navbar label[for="dropdown"] {
  margin-left: auto;
  display: none;
}

.navbar label[for="dropdown"] svg {
  display: block;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  background: inherit;
  text-align: center;
}

.navbar ul a {
  display: block;
  margin: 0em 0em 0em 0.8em;
  color: inherit;
  text-decoration: none;
}

.navbar ul .active {
  font-style: italic;
}

.navbar .purely {
    font-style: italic;
}

.navbar .fictional{
    color: #7a7a7a;
}

.navbar ul a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .navbar label[for="dropdown"] {
    display: block;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 0;
    align-items: center;
    flex-direction: column;
    background-color: var(--navbg);
    width: 100%;
  z-index: 10;
  }


  .navbar ul a {
    padding: 0.3em 2em;
  z-index: 10;
  }

  .navbar:has(input[type="checkbox"]:checked) ul {
    display: none;
  }
}
