/* Having all Signup Buttons Light up */
    /*Activate to put it on site!*/

/* .attentionHere {
    animation: flashButton 3s ease;
    animation-iteration-count: infinite;
} */


@keyframes flashButton {
    0% {
        transform: scale(1);
    } 
    
    50% {
        transform: scale(1.2);
    }
    
    100% {
        transform: scale(1);
    }
  }


