*,
*::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,
button,
img {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

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-color: #000;

  p {
    font-size: 4vmax;
    color: transparent;
    background-image: linear-gradient(to right, #000, #0f0, #000);
    background-clip: text;
    background-size: 80%;
    background-repeat: no-repeat;
    animation: move 3s linear infinite;
  }
}

@keyframes move {
  0% {
    background-position-x: -500%;
  }
  100% {
    background-position: 500%;
  }
}
