header {
    /*background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));*/
    background-color: #000;
    /* Set the background color to purple 
    animation-name: pulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    /* Apply the pulse animation to the background */
  }
 
  .footer-animation{
    background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1));
    background-color: #6a0dad;
    /* Set the background color to purple */
    animation-name: pulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    /* Apply the pulse animation to the background */

  }
  

  
  .animate {
    background-color: #6a0dad;
    /* Set the background color to purple */
    animation-name: pulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    /* Apply the pulse animation to the background */
  }

  .date {
    float: right;
    color: #6a0dad; 
    animation-name: textPulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    }

.text-animate {
    
    color: #6a0dad; 
    animation-name: textPulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    }

  .badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background-color: #6a0dad;
    /* Set the background color to purple */
    animation-name: pulse;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    /* Apply the pulse animation to the background */
  }

  .list-group-item {
      position: relative;
      display: block;
      padding: .5rem 1rem;
      color: #aaaaaa;
      text-decoration: none;
      background-color: #000000;
      border: 2px solid #6a0dad;
      border-radius: 30px;
      animation-name: pulse-border;
      animation-duration: 30s;
      animation-iteration-count: infinite;
    }

  .footer{
    animation-name: pulse;
      animation-duration: 30s;
      animation-iteration-count: infinite;

  }
  
  
  .sliding-div {
    position: relative;
    height: 400px; /* set the height of your div */
    
  }
  
  .sliding-div > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .sliding-div > div.active {
    opacity: 1;
  }
  
  .slider-box {
    width: 100%;
  }
  .animate-head{
    background: linear-gradient(to right, hsl(0, 0%, 30%) 0, hsl(0, 0%, 100%) 10%, hsl(0, 0%, 30%) 20%);
    -webkit-background-clip: text;
    background-clip: text;
    clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 15s linear ;
    animation-iteration-count: infinite;

  }

  @keyframes shine {
    0% {
      background-position: 0px;
    }
    50% {
      background-position: 500px;
    }
    100% {
      background-position: 1000px;
    }
  }
    @keyframes pulse-border {
      0% {
        border-color: #6a0dad;
      }
      50% {
        border-color: #148b0b;
      }
      100% {
        border-color: #6a0dad;
      }
    }
  
    @keyframes pulse {
      0% {
        background-color: #6a0dad;
      }
      50% {
        background-color: #148b0b;
      }
      100% {
        background-color: #6a0dad;
      }
    }
    @keyframes textPulse {
      0% {
        color: #6a0dad;
      }
      50% {
        color: #148b0b;
      }
      100% {
        color: #6a0dad;
      }
    }
  