.deron-status{

    max-width:300px;
    margin:auto;

    background:#1b1b1b;

    border:2px solid #b38a2f;

    border-radius:12px;

    padding:20px;

    text-align:center;

    color:white;

    font-family:Arial;
}

.server{

    font-size:20px;

    font-weight:bold;

    margin-bottom:25px;
}

.players{

    font-size:18px;
}

.numero{

    margin-top:10px;

    font-size:48px;

    color:#39ff14;

    font-weight:bold;
}

.circle{

    display:inline-block;

    width:14px;

    height:14px;

    background:#00ff44;

    border-radius:50%;

    margin-right:8px;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{

        transform:scale(1);
        opacity:1;

    }

    50%{

        transform:scale(1.35);
        opacity:.5;

    }

    100%{

        transform:scale(1);
        opacity:1;

    }

}