.project-container {
  margin-bottom: 3em;
}

.project-container ul {
  list-style: none;
}

.project-container ul li:last-child {
  margin-top: 10px;
}

.link-projs {
  display: flex;
  justify-content: space-between;
  width: 4em;
}

.hide-content {
  display: none;
}

.read-more-btn {
  cursor: pointer;

  &:hover {
    color: antiquewhite;
  }
}

.intro-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
}

.audio {
  border-radius: 45%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  margin-left: 5px;
  margin-right: 5px;
}

.privateLink {
  pointer-events: none; /* disables click */
  cursor: not-allowed; /* shows a blocked cursor */
  position: relative;
}

.privateLink::after {
  content: "Repo is private";
  position: absolute;
  bottom: 100%; /* show above the icon */
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.privateLink:hover::after {
  opacity: 1;
}
