


.voltaje, .corriente, .resistencia{
    font-weight: bold;      
}

.voltaje{
    color: red;
}

.corriente{
    color:rgb(255, 217, 0)
}

.resistencia{
    color:rgb(0, 155, 0);
}

.triangulo{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}



/*Clases que serán agregadas con Js:*/
.animar-boton-voltaje{
    box-shadow: 0 0 20px red;
    color:red;
}

.animar-boton-intensidad{
    box-shadow: 0 0 20px yellow;
    color:rgb(255, 68, 0);
}

.animar-boton-resistencia{
    box-shadow: 0 0 20px green;
    color:rgb(0, 99, 0);
}

.opciones-r{
    display: flex;
    justify-content: space-between;
    width: 120px;
}

.ohm, .kohm, .mohm, .mA, .a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background-color:rgb(0, 183, 255); 
    cursor: pointer;
}











