@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&display=swap');

html, body {
  height: auto;
  min-height: 100%;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  height: 100vh;
  background-color: black;
}

body::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background-image: url(/images/enepuls.gif);
  background-size: cover;
  background-position: center center;
  background-color: black;
}

h1 {
  font-family: Orbitron;
  color: #FFF;
  font-size: 10vw;
}

#enepuls {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}



.anim {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 16%,
    #ff1361 32%,
    #fff800 48%,
    #ff1361 64%,
    #44107a 86%,
    #231557 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 10s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


