#navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  background: rgb(180, 185, 248, 0.1);
}

#navigation-menu>ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

#navigation-logo {
  position: relative;
  width: 100%;
  white-space: nowrap;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-family: 'Plein-Variable', sans-serif;
}

#navigation-logo:before {
  content: '';
  position: absolute;
  width: 110%;
  background-color: gold;
  opacity: 0.8;
  height: 100%;
  z-index: -1;
  left: -4px;
  bottom: 0;
  transform: skewX(-20deg);
}

@media screen and (max-width: 768px) {
  #navigation {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
  }

  #navigation-menu>ul {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.50rem;
    flex-wrap: wrap;
  }

}
