
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
.bubble {
    display: inline-block;
    padding: 5px 10px;
    background-color: #ddc656;
    border-radius: 30px;
    color: #5e1914;
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: moveLeftRight 2s infinite;
}

.bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #ddc656;
    border-radius: 10px;
}

@keyframes moveLeftRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}