.mobileNavBtn {
  /* sizing */
  width: 2rem;
  height: 2rem;
  padding: 2px;
  margin-right: 5px;
  margin-top: 5px;

  /* display */
  display: block;

  /* position */
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;

  /* color */
  border: none;
  background-color: var(--lg-b);
  color: white;
}

.mobileNav {
  /* sizing */
  width: 90%;
  height: 100vh;

  /* display */
  display: flex;
  flex-direction: column;

  /* position */
  translate: -100vw 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;

  /* color */
  background-color: var(--y);
}

#nav {
  transition: transform 0.3s linear;
}

.mobileNav img {
  /* sizing */
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.mobileNav a {
  /* sizing */
  width: 90%;
  height: fit-content;
  margin-left: 5%;
  margin-bottom: 5px;
  padding: 5vh 1vh;

  /* text */
  text-align:left;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;

  /* color */
  color: white;

  /* trans */
  transition: background-color 0.2s linear, box-shadow 0.3s ease-in-out;
}

.mobileNav a:hover {
  background-color: black;
  box-shadow: -1vh 5px var(--r);
}

.imgBox {
  width: 100%;
  height: 6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;

  background-color: var(--y);
  border-bottom: 2px solid var(--b);

  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  z-index: 999;

}

.imgBox img {
  width: 50%;
  





}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  .mobileNavBtn {
    display: none;
  }

  .mobileNav {
    display: none;
  }

  .imgBox {
    display: none;
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */