body {
  background-color: black;
}

main {
  justify-content: center;
  display: grid;
  color: white;
  height: 100svh;
  background-color: rgb(46, 45, 45);
  max-width: 100svw;
  overflow-wrap: break-word;
}

.goldWords {
  color: goldenrod;
}

.pinkWords {
  color: rgb(252, 52, 192);
}

.playing {
  color: purple;
}

a {
  color: #8c3d96;
  text-decoration: none;
}

#martyr {
  height: fit-content;
  font-size: 4rem; /* Tamaño del emoji */
  animation: dance 1s infinite alternate; /* Nombre de la animación, duración, iteraciones e instrucción */
}

@keyframes dance {
  from {
    transform: rotate(0deg) translateX(0);
  }
  to {
    transform: rotate(1deg) translateX(1rem); /* Angulo de rotación y desplazamiento horizontal */
  }
}
