@charset "UFT-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* color: rgba(255, 255, 255, 1); */
}
body {
  height: 100vh;
  background-color: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gradient {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: bold;
  /* color: #fff; */
  background: linear-gradient(to right, #f32170, #ffeb07, #2196f3, #ff00eb);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
  /* text-shadow: 0 0 10px rgba(255,255,255,1); */
}
.gradient_animate {

  font-size: 6rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 2px #fff;
  position: relative;
}

.gradient_animate::before {
  content: attr(data-text);
  position: absolute;
  background: linear-gradient(90deg, #d630f2, #ff002f, #e4ff00, #03a9f4, #d630f2);
  background-size: 300%;
  overflow: hidden;
  transition: width 2s;
  animation: animate 5s linear infinite;
  width: 0;
  /* width: 100%; */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient_animate:hover::before {
  width: 100%;
}

@keyframes animate {
  0% {background-position: 0 0;}
  100% {background-position: 300% 0;}
}