.custom-heading {
  font-family: "Helvetica Neue", sans-serif;
}

.typing-container {
  display: flex;
  align-items: center;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: white;
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.lucide-github {
  transition: stroke 0.2s ease-in-out;
}

.lucide-github:hover {
  stroke: white;
  cursor: pointer;
}

.badge {
  display: inline-flex;
  align-items: center;
  transform: translateY(3px);
  background-color: #8882;
  color: #888;
  padding: 0.25rem 0.375rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
  line-height: 100%;
  gap: 0.25rem;
}

.badge:hover {
  background-color: #8883;
  color: #bbb;
}
.badge-link-image {
  display: inline-block;
  height: 1.1em;
  width: 1.1em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
}
