

@font-face{
    font-family: 'Minecrafter';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url("fonts/Minecrafter.Alt.woff2") format("woff2");
}

.font-Minecrafter {
    font-family: 'Minecrafter', sans-serif;
}

.animacion-pulse{
    animation: pulse 1s infinite ease-in-out
}

@keyframes pulse {
    0%{
        opacity: 100%;
        color: red;
        scale: 1;
    }
    50%{
        opacity: 25%;
        color: red;
        scale: 0.9
    }
    100%{
        opacity: 100%;
        color: red;
        scale: 1;
    }
}


.animacion-rotate-10{
    animation: rotate 1s infinite ease-in-out;
}

@keyframes rotate {
    0%{
        rotate: 5deg;
    }
    50%{
        rotate: -5deg;
    }
    100%{
        rotate: 5deg;
    }
    
}