.docs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.docs a {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--black-sw);
  position: relative;
  transition: color 0.2s ease;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1rem 0;
}

.docs a:hover {
  color: rgb(150, 150, 150);
}

.docs img {
  height: 3.3rem;
}

@media screen and (max-width: 820px) {
  .docs a {
    font-size: 1.4rem;
  }
}