﻿.bubble {
    position: fixed;
    bottom: 320px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 69, 58, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

    .bubble p {
        font-size: 14px;
        text-align: center;
    }

    .bubble:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background: rgba(255, 69, 58, 0.4);
        z-index: -1;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
