.top_hero {
  height: 80vh;
  width: 100vw;
  margin: 0;
  background-position: center center; 
  background-size: cover;
}
.top_hero svg {
  max-width: 45vw;
  max-height: 55vh;
  display: block;
  position: absolute;
  left: 53%;
  top: 51%;
  transform: translate(-50%, -50%);
}

@media only screen and (orientation:landscape) {
.top_hero svg {
  max-width: 50vw;
  max-height: 65vh;
  display: block;
  position: absolute;
  left: 53%;
  top: 53%;
  transform: translate(-50%, -50%);
  }
}

@media only screen and (min-width: 601px) {
.top_hero svg {
  max-width: 35vw;
  max-height: 45vh;
  display: block;
  position: absolute;
  left: 53%;
  top: 51%;
  transform: translate(-50%, -50%);
}
}
.top_hero #Signature path {
  fill: black;
}
.top_hero mask path {
  fill: none;
  stroke: white;
}
.top_hero #Mouse path,
.top_hero mask path {
  animation-duration: var(--duration);
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  stroke-dasharray: var(--length) var(--length);
  stroke-dashoffset: var(--length);
  animation-name: brush;
  animation-delay: var(--delay);
}
@keyframes brush {
  0% {
    stroke-dashoffset: var(--length);
  }
  100% {
    stroke-dashoffset: 0;
  }
}