* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Style for the floating button */
  .floating-button-add {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: #ffffff;
    border:  white solid 2px;
    border-radius: 50%;
    box-shadow: 3px 3px 15px rgba(0, 0, 0);
    font-size: 2.5vh;
    padding:15px;
    text-align: center;
    cursor: pointer;
    animation-name: floating-button-add;
    
   
}

   

/* Gradient Background with Motion Effect */
.floating-button-add {
    background: linear-gradient(90deg, rgb(182, 95, 153),rgb(100, 177, 212), rgb(182, 95, 153),rgb(100, 177, 212), rgb(182, 95, 153),rgb(100, 177, 212));
    background-size: 400% 400%;
    animation: gradientMotion 5s linear infinite;
}

@keyframes gradientMotion {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



/* Style for the social media icons */
.social-icons-pupup {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-image: linear-gradient(360deg,rgb(182, 95, 153),rgb(100, 177, 212));
    border: 2px solid #ffffff;
    border-radius: 25px;
    padding: 2px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
   
}

.social-icons-pupup{
    animation: social-icons-pupup .5s ease-in-out;
    transform-origin: top;
}


@keyframes social-icons-pupup {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.social-icons-pupup a {
    
    text-decoration: none;
    
    

}
.social-media-icons-add-button a{
    display:grid;
    background-color: #ffffff;
    font-size: 24px;
    margin: 5px;
    padding: 3px;
    border-radius:25px;
    animation-name: social-media-icons-add-button a;
}
.close-button-popup {
    
    cursor: pointer;
    
}