.whatsapp-button, .second-button {
    position: fixed;
    bottom: 10px;
    width: 35%;
    height: 50px;
    display: inline-block;
    float: left;
    text-align: center;
    line-height: 50px;
    z-index: 9999;
}

.whatsapp-button {
    right: 10px;
    background-color: green;
    color: #fff;
    border-radius: 10px;
}

.second-button {
    left: 10px;
    background-color: blue;
    color: #fff;
    border-radius: 10px;
}

/* Ortalanmış resim için stil */
.center-imageee {

    animation: scaleAnimation 0.5s alternate infinite; /* Animasyonu uygula */
    border-radius: 50%; /* Resmi daire şeklinde yap */
    overflow: hidden; /* Animasyonda resmin dışarı taşmasını önle */
}

/* Animasyon tanımı */
@keyframes scaleAnimation {
    0% {
        transform: translateX(-50%) scale(1); /* Başlangıç boyutu */
    }
    100% {
        transform: translateX(-50%) scale(1.1); /* 1.5 kat büyütülmüş boyut */
    }
}

