.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 60px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;

    h3 {
        color: #64B161;
        font-size: 25px;
        margin: 5px;
        font-weight: 300;
    }
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}