@font-face {
  font-family: 'gl';
  src: url('gl.ttf') format('truetype');
  /* Reemplaza 'ruta/a/gl.ttf' con la ruta real a tu archivo de fuente */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: #131313;
  color: #9B1618;
  font-size: 150px;
  font-family: 'gl', monospace; /* Usamos el nombre definido en @font-face */
  letter-spacing: -7px;
}

div.glitch-title {
  animation: glitch 1s linear infinite;
  text-align: center;
  position: relative; /* Agregamos posición relativa para alinear el texto */
}

@keyframes glitch {
  2%, 64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg);
  }
}

div.glitch-title div:before,
div.glitch-title div:after {
  content: attr(title);
  position: absolute;
  left: 0;
}

div.glitch-title div:before {
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

@keyframes glitchTop {
  2%, 64% {
    transform: translate(2px, -2px);
  }
  4%, 60% {
    transform: translate(-2px, 2px);
  }
  62% {
    transform: translate(13px, -1px) skew(-13deg);
  }
}

div.glitch-title div:after {
  animation: glitchBotom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchBotom {
  2%, 64% {
    transform: translate(-2px, 0);
  }
  4%, 60% {
    transform: translate(-2px, 0);
  }
  62% {
    transform: translate(-22px, 5px) skew(21deg);
  }
}

div.subtext {
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-family: 'Arial', sans-serif; /* Usamos Arial como nueva fuente */
  margin-top: 20px; /* Agregamos margen superior para separar los textos */
  animation: none; /* Desactivamos el efecto glitch para este texto */
}

.subtext {
  letter-spacing: normal; /* Establecemos el espaciado normal entre letras */
}
