/* body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center;    
    min-height: 100vh; 
    background-image: url('../../images/ad_bg.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: brightness(0.3);
} */


/* .centered-div {
    
    width: 100%;
    max-width: 600px; 
    padding: 20px;
    margin: 10px;
    border:5px solid black;
    border-radius: 15px; 
    box-shadow: 15px 15px 40px rgba(0,0,0,0.45);
    color: white;
    font-size: 15px;
} */
.color-change {
    padding-left: 3px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    animation: changeColor 3s infinite;
}

.pulse-animation {
    animation: pulseAnimation 2s infinite;
    
  }
@keyframes changeColor {
    0% {
        color: #fff;
        
    }
    25% {
        color: #00ff00;
        
    }
    50% {
        color: yellow;
        
    }
    75% {
        color: #dbd2ff;
        
    }
    100% {
        color: #fff;
        
    }
}
 @keyframes pulseAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
      
    }
    100% {
      transform: scale(1);
    }
  }

  