header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: white;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

header.transparent {
  background-color: rgba(0, 0, 0, 0);
}

header.solid {
  background-color: rgba(40, 44, 52, 0.8);
  backdrop-filter: blur(6px);
}

header .header-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

header nav,
header div {
  flex: 1;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav li:hover {
  display: inline-block;
  background: white;
}

nav li:hover a {
  color: black;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav li {
  display: inline-block;
  padding: 10px;
  border-radius: 40px;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
  font-family: "Carter One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
