@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap");
.header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  white-space: nowrap;
  min-height: 99px;
}
.header__logo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo img {
  aspect-ratio: 8, 07;
  max-width: 220px;
  object-fit: cover;
  object-position: center;
}
.header__logo span {
  font-size: 2rem;
  font-family: "Audiowide", cursive;
  color: var(--blue);
}
.header__buttons {
  display: flex;
}
.header__buttons a {
  padding: 1rem 2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
  font-size: 14px;
  transition: all 200ms;
  cursor: pointer;
  text-decoration: none;
}
.header__buttons a:focus {
  text-decoration: none;
}
.header__buttons a:first-child:hover {
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.8);
}
.highlight:hover {
  filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.8));
}
.highlight {
  background: #2c5dc9;
  box-shadow: 0px 2px 1.5rem rgba(44, 93, 201, 0.4),
    inset 0px 3px 0px rgba(255, 255, 255, 0.25),
    inset 0px 4px 16px rgba(1, 0, 45, 0.5),
    inset 0px -3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0.75rem;
}
.dropdown {
  display: none;
}
@media only screen and (max-width: 900px) {
  .header__buttons > a {
    display: none;
  }
  .dropdown {
    display: block;
  }
} ;
