.tags {
  position: fixed;
  bottom: 30rem;
  left: 1rem;
  z-index: 999;
}

.tag-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tag {
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.tag:hover {
  background-color: white;
  color: rgb(68, 75, 83);
}

.tags span {
  color: black;
  font-weight: bolder;
}
