#container_cards{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 10px;
}

.card{
    display: flex;
    flex-direction: column;
    border: solid 1px #333;
    border-radius: 20;
    width: 20vh;
    height: 15vh;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.card *{
    align-items: center;
    margin: 0;
    padding: 0;    
}

.card-dark{
    background: #252526;
    border-color: #333;
}

.text-info{
    color: #569cd6;
}

.text-sucess{
    color: #6a9955;
}

.text-error{
    color: #f44747;
}

#container_info{
    display: flex;
    flex: 1;
}