* {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: auto;
  background-color: gray;
  height: 100vh;
  font-weight: 700;
  font-size: 10vw;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.text {
  display: flex;
  justify-content: center;
  content: fixed;
  align-items: center;
  position: relative;
  background-image: url(assets/chevron2.png);
  background-clip: text;
  color: transparent;
  animation: slide 7s linear infinite;
}

@keyframes slide {
    0%{
        background-position: -30%;
    }

    100% {
        background-position: 30%
    }
}
