header {
  z-index: 1000;
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.15);
  background: var(--green);
  width: 100%;
  height: 53px;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  color: white;
}

.logo-container:hover .logo {
  transform: scale(1.5); /* Slightly enlarge the logo on hover */
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Roboto Slab;
  font-size: 18px;
}

header ul {
  margin: 0;
}
header li {
  float: left;
}

header li::marker {
  content: "";
}

header a {
  display: block;
  text-align: center;
  padding: 7px 8px;
  margin: 7px 8px;
  text-decoration: none;
  color: white;
}

header a:hover {
  color: var(--blue) !important;
}

header a:visited {
  color: inherit;
}
