.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(52, 54, 54, 0.7); 
    color: white;
    margin-top: 4rem;
  }
  
  
    .footer-left {
      margin-top: 60px;
      margin-left: 6rem;
      max-width: 50%;
      color: white;
    }
    
    .cool-text {
      font-family: 'Mosk', sans-serif;
      font-size: 3rem;
      display: inline-block;
      color:  rgba(30, 200, 200, 0.858);
      word-spacing: 0.3em; 
    }
    
   
    .cool-text span {
      display: inline-block;
      transition: transform 0.3s, color 0.3s;
    }
    
    .cool-text span:hover {
      transform: rotate(10deg) scale(1.2);
      color: cyan; 
    }
    
    
    .footer-left p {
      font-size: 1.2rem;
    }
    
    .hire-me {
      color: white;
      border-style: solid;
      border-color: white;
      border-radius: 15px;
      border-width: 2px;
      padding: 10px 20px;
      margin-top: 25px;
      margin-bottom: 25px;
      font-size: 1rem;
      cursor: pointer; 
      text-decoration: none;
      transition: all 235ms ease-in-out;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 
                   0 0 10px rgba(0, 204, 255, 0.7), 
                   0 0 15px rgba(0, 204, 255, 0.5);
    }
    
    .hire-me:hover {
      background-color: rgba(0, 255, 255, 0.7);
      border-color: rgba(0, 204, 255, 0.7); 
      color: #0e0c18;
      box-shadow: 0 0 20px rgba(0, 204, 255, 0.5); 
      transform: translate3d(0, 2px, 0);
    }
    
    .social-links a {
      color: cyan;
      text-decoration: none;
      margin: 0 5px;
      font-size: 1rem;
      transition: color 0.3s;
      transition: font-size 0.3s; 
    }
    
    .social-links a:hover {
      text-decoration: underline;
      font-size: 1.05rem;
    }
    
    .footer-right img {
      margin-right: 6rem;
      max-width: 400px;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    
@media (max-width: 1023px) {
    .footer {
      flex-direction: column; 
      align-items: center;
    }
  
    .footer-left {
      margin-left: 0;
      max-width: 90%; 
      text-align: center;
    }
  
    .footer-right img {
      max-width: 80%;
      margin: 0 auto;
      margin-bottom: 20px;
  
    .cool-text {
      font-size: 2rem;
    }
  
    .footer-left p {
      font-size: 1rem;
    }
  
    .hire-me {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .social-links a {
      font-size: 0.9rem;
      margin: 0 3px;
    }
  }
}
    
@media (max-width: 480px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center; 
        padding: 0; 
    }
    
    .cool-text { 
        order: 1;
        font-size: 1.5rem;
        margin: 0;
        text-align: center;
    }

    .footer-right {
        order: 2;
        margin: 10px 0;
        text-align: center;
    }

    .footer-right img {
        height: 250px; 
        width: 350px; 
    }

    .footer-left{
        padding: 0%;
        margin-top: 2rem;
    }
    .footer-left p:first-of-type { 
        order: 3;
        font-size: 0.9rem;
        margin: 5px 0;
        text-align: center;
    }

    .hire-me { 
        order: 4; 
        padding: 4px 8px;
        font-size: 0.8rem;
        margin: 5px 0;
    }

    .footer-left p:last-of-type {
        order: 5;
        font-size: 0.9rem;
        margin-top: 10px;
        text-align: center;
    }

    .social-links {
        order: 6;
        margin: 5px 0;
        text-align: center;
    }
}
