body{
  background: #eee;
  positio: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.banner{
  margin-top: 150px;
  position: absolute;
  padding: 20px;

}
.signature{
  position: absolute;
  max-width: 40%;
  top: 150px;
  right: 10px;
  transform: rotate(-5deg);
}
.contact{
  color: #262626;
  font-size: 1.3rem;
}
.title svg {
    width: 100%;
}
svg path{
  fill: transparent;
  stroke: white;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: textAnimation 4s ease-in-out forwards;
}

@keyframes textAnimation{
  0%{
    stroke-dashoffset: 300;
  }
  80%{
    fill: transparent;
    stroke: white;
  }
  99%{
    stroke: #262626;
  }
  100%{
    fill: white;
    stroke-dashoffset: 0;
    stroke: #262626;
  }
}