@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-user-drag: none;
    list-style: none;
    text-decoration: none;
    transition: .3s;
}

.whatsapp-button {
    position: fixed;
    bottom: 14px;
    right: 14px;
    z-index: 9999;
}

.whatsapp-button.animation { 
    animation: whatsapp-vibration .3s linear forwards infinite;
}

@keyframes whatsapp-vibration {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, 2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-2px, 2px);
    }

    60% {
        transform: translate(2px, -2px);
    }

    70% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    90% {
        transform: translate(-2px, 2px);
    }

    100% {
        transform: translate(0);
    }
}