.custom-title {
  /*display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;*/
}

.custom-title span.highlight {
  display: inline-block;
  transform: rotate(var(--highlight-rotation));
  color: black;
  padding: 0rem 1rem;
  width: auto;
  text-align: center; /* Center text */
  position: relative; /* Position text */
  mix-blend-mode: screen; /* This makes the cutout text possible */
}

.custom-title span.highlight {
  mix-blend-mode: screen; /* This makes the cutout text possible */
}

.custom-title span.svg svg {
  width: 50px;
  height: auto;
  stroke-width: 2;
  fill: none;
  animation: dash 2s linear forwards;
}

@keyframes dash {
  from {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
  }
  to {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
  }
}