.skill-tags {
  background-color: #000;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags h3 {
  border: 2px solid #fff;
  color: #fff;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.skill-tags h3:hover {
  background-color: #fff;
  color: #000;
  cursor: default;
}