      .button-container {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 3;
        }
        
        .home-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff9966, #ff5e62);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            z-index: 2;
            text-decoration: none;
        }
        
        .home-button:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }
        
        .home-button:active {
            transform: scale(0.95) rotate(-5deg);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .home-icon {
            font-size: 40px;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .home-button:hover .home-icon {
            transform: scale(1.2);
        }
        
        .ripple {
            position: absolute;
            width: 160px;
            height: 160px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: scale(0);
            z-index: 1;
        }
        
        .home-button:hover .ripple {
            animation: ripple 1.5s infinite;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        .logo img {
       width: 130px;
      height: 130px;
      mix-blend-mode: multiply;
     z-index: 3;
   }



   .logo .logo-image1 {
      position: fixed;
      background-color: white;
      right: 3px;
     top: 3vh;
  
}

 @media (max-width: 1000px) {

   
        
        .home-button {
            width: 70px;
            height: 70px;
        }
        
        .home-icon {
            font-size: 35px;
        }
        
        .logo img {
            width: 100px;
            height: 100px;
        }
        
     
    }

 @media (max-width: 768px) {

   
        
        .home-button {
            width: 60px;
            height: 60px;
        }
        
        .home-icon {
            font-size: 35px;
        }
        
        .logo img {
            width: 80px;
            height: 80px;
        }
        
     
    }

 @media (max-width: 500px) {

   
        
        .home-button {
            width: 40px;
            height: 40px;
        }
        
        .home-icon {
            font-size: 25px;
        }
        
        .logo img {
            width: 60px;
            height: 60px;
        }
        
     
    }