@import url('https://fonts.googleapis.com/css?family=Vibur:400');

body {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 1;
  font-family: "Vibur", sans-serif;
  background-color: black;
}

.content {
  text-align: center;
  z-index: 1;
}

.mainText {
  animation: pulsate 0.11s ease-in-out infinite alternate;
  color: rgb(255, 211, 238);
  text-shadow:
    0 0 7px rgb(255, 211, 238),
    0 0 10px rgb(255, 211, 238),
    0 0 21px rgb(255, 211, 238),
    0 0 42px #f09,
    0 0 82px #f09,
    0 0 92px #f09,
    0 0 102px #f09,
    0 0 151px #f09;
    font-size: 100px;
    font-weight: 500;
}


/* animations don't put animations on the top so its better ;)*/

@keyframes pulsate {
    
  100% {

      text-shadow:
      0 0 4px rgb(255, 211, 238),
      0 0 11px rgb(255, 211, 238),
      0 0 19px rgb(255, 211, 238),
      0 0 40px #f09,
      0 0 80px #f09,
      0 0 90px #f09,
      0 0 100px #f09,
      0 0 150px #f09;
  
  }
  
  0% {

    text-shadow:
    0 0 4px rgb(255, 211, 238),
    0 0 10px rgb(255, 211, 238),
    0 0 18px rgb(255, 211, 238),
    0 0 38px #f09,
    0 0 73px #f09,
    0 0 80px #f09,
    0 0 94px #f09,
    0 0 140px #f09;
  }
}

img {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  opacity: 15%;
}