*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

a {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
}

.box {
  position: relative;
  /* Width y height de la imagen 1248 x 208 */
  /* 6 Es el numero de personajes en la imagen */
  width: calc(1248px / 6);
  height: 208px;
  background: url('assets/image.avif');
  animation: animate 1s steps(6) infinite;
}

@keyframes animate {
  from {
    background-position: 0;
  }
  to {
    background-position: -1248px;
  }
}
