

    body{
        text-align:center;
        background-color:#010038;
      }
      h1 {
        font-size: 5rem;
        margin-top:40vh;
        color:white;
        font-family: 'Merienda', cursive;
        animation-name:glow;
        animation-duration:1s;
        animation-iteration-count:infinite;
        animation-direction:alternate;
      }
      
      @keyframes glow{
        from{text-shadow:0px 0px 5px #fff,0px 0px 5px #614ad3;}
        to{text-shadow:0px 0px 20px #fff,0px 0px 20px #614ad3;}
      
}
h2 {
  font-size: 2rem;
  margin-top:20vh;
  color:white;
  font-family: 'Merienda', cursive;
  animation-name:glow;
  animation-duration:1s;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}

@keyframes glow{
  from{text-shadow:0px 0px 5px #fff,0px 0px 5px #614ad3;}
  to{text-shadow:0px 0px 20px #fff,0px 0px 20px #614ad3;}

