.desktop {
  /* sizing */
  width: 100%;
  height: fit-content;

  /* color */
  background-color: var(--y);

  /* position */
  display: none;
  justify-content: space-evenly;
 
  /* position */
  position: fixed;
  z-index: 9999;
  top: 0;
  

  /* transition */
  transition: background-color 0.1s linear;
}

.desktop:hover {
  /* color */
  background-color: var(--y);
  align-items: center;
}

.desktop:hover > img {
  width: 20%;
}

.desktop:hover > a {
  color: black;
}

.desktop a {
  /* sizing */
  height: fit-content;
  padding:  1rem 1.5rem;

  /* font */
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;

  /* color */
  background-color: transparent;
  color: black;

  /* trans */
  transition: background-color 0.2s, box-shadow 0.3s ease-in-out;
}

.desktop a:hover {
  /* color */
  background-color: var(--lg-b);
  box-shadow: 0px -10px 0 -4px var(--b);
  color: white;
}

.desktop img {
  /* sizing */
  width: 15%;

  /* transition */
  transition: width 0.1s linear;
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  .desktop {
    display: flex;
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */