html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}

.wrap {
  background-color: black;
  color: aliceblue;
  font-family: monospace;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 16px;
}

.subtexto {
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: -0.3px;
  margin: 0;          
  opacity: 0.85;
  text-transform: uppercase;
}

/*ASCII*/
#text {
  line-height: 0.8;
  margin: 0;
  padding: 0;
  white-space: pre;
  animation: squiggly-anim 0.5s linear infinite;
}

/*Animación*/
@keyframes squiggly-anim {
  0% { filter: url("#squiggly-0"); }
  25% { filter: url("#squiggly-1"); }
  50% { filter: url("#squiggly-2"); }
  75% { filter: url("#squiggly-3"); }
  100% { filter: url("#squiggly-4"); }
}

.svg-container {
  width: 0;
  height: 0;
  overflow: hidden;
}

.ascii-container {
  position: relative;
}