.txt-white{
    color: #fff !important;
}
.txt-bk{
    color: #130646 !important; 
}
.picx{
    height: 200px !important;
    width: -webkit-fill-available !important;
}
.donate-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #33cc33; /* Change this to your preferred color */
    color: white;
    padding: 20px 20px;
    border-radius: 50%; /* Adjust this for a more or less rounded button */
    border: 2px solid #023102;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    animation: shake 0.5s infinite;
    z-index: 1;
}
.donate-button:hover {
    background-color: #023102; /* Change this for a different hover color */
    border: 2px solid #33cc33;
}
.donate-button i {
    margin-right: 8px; /* Space between icon and text */
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
