footer {
    padding: 20px 0;
    text-align: center;
    position: relative;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  footer p {
    font-size: 1rem;
    margin: 5px 0;
  }
  
  .footer-text {
    font-size: 1.5rem;
    margin: 0;
    opacity: 2;
    position: relative;
  }
  .footer-text > span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .footer-text > span:first-child {
    animation: glitch 650ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-0.025em, -0.0125em);
    opacity: 0.75;
  }
  
  .footer-text > span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
    transform: translate(0.025em, 0.025em);
    opacity: 0.75;
  }
  
  @keyframes glitch {
    0% {
      text-shadow: 0.05em 0 0 var(--pink), -0.05em -0.025em 0 var(--blue),
        -0.025em 0.05em 0 var(--yellow);
    }
    14% {
      text-shadow: 0.05em 0 0 var(--pink), -0.05em -0.025em 0 var(--blue),
        -0.025em 0.05em 0 var(--yellow);
    }
    15% {
      text-shadow: -0.05em -0.025em 0 var(--pink), 0.025em 0.025em 0 var(--blue),
        -0.05em -0.05em 0 var(--yellow);
    }
    49% {
      text-shadow: -0.05em -0.025em 0 var(--pink), 0.025em 0.025em 0 var(--blue),
        -0.05em -0.05em 0 var(--yellow);
    }
    50% {
      text-shadow: 0.025em 0.05em 0 var(--pink), 0.05em 0 0 var(--blue),
        0 -0.05em 0 var(--yellow);
    }
    99% {
      text-shadow: 0.025em 0.05em 0 var(--pink), 0.05em 0 0 var(--blue),
        0 -0.05em 0 var(--yellow);
    }
    100% {
      text-shadow: -0.025em 0 0 var(--pink), -0.025em -0.025em 0 var(--blue),
        -0.025em -0.05em 0 var(--yellow);
    }
  }
  
  .footer-text:hover {
    opacity: 0.8;
  }
  
  /* Social Media Button Colors */
  .social-button.youtube-button {
    background-color: #ef233c; /* YouTube Red */
    color: white;
  }

  .social-button.linkedin-button {
    background-color: #0077B5; /* LinkedIn Blue */
    color: white;
  }

  .social-button.instagram-button {
    background-color: #C13584; /* Instagram Pink */
    color: white;
  }

  .social-button.twitter-button {
    background-color: #657786; /* Twitter Gray */
    color: white;
  }

  /* Social Icon Colors */
  .social-icon.youtube-icon i {
    color: #ef233c;
  }

  .social-icon.linkedin-icon i {
    color: #0077B5;
  }

  .social-icon.instagram-icon i {
    color: #C13584;
  }

  .social-icon.twitter-icon i {
    color: #657786;
  }