.custom-title {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  /*display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;*/
}

.custom-title span.cursive {
  font-family: 'Pacifico', cursive;
}

.custom-title span.svg{
  overflow: visible;
  text-align: inherit;
  display: inline-block;
  position: relative;
  font-size: inherit;
}

.custom-title span.svg svg {
  left: 50%;
  overflow: visible;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0%);
  width: calc(100% + 20px);
  fill: none;
  /*animation: dash .3s linear forwards;*/
  z-index: -1;
}

.custom-title span.svg path{
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}