.spritesheet {
  width: 200px;
  height: 180px;
  background: url("../assets/catwalk.svg") no-repeat;
  background-size: 800px 180px;
  animation: catWalk 1s steps(4) infinite;
}
.spritesheet:hover {
  animation: none;
}

@keyframes catWalk {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -800px 0;
  }
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidden {
  display: none;
}

.text--vector svg {
  width: 300px;
  height: auto;
  margin-bottom: 1rem;
}
.text--vector path {
  transform: translateX(200px);
  opacity: 0;
  fill: inherit;
  stroke: black;
}

button {
  background: none;
  margin: 0.25rem;
  padding: 5px 10px;
  border: 1px solid black;
  font-family: "Courier New", Courier, monospace;
}
button:hover {
  border: 1px solid #ff00ff;
  color: #ff00ff;
}

/*# sourceMappingURL=style.css.map */
