
/* calcola percentuale di un numero */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: rgb(220, 220, 220);
    color: rgb(0, 0, 0);
  }
  
  input[type="number"] {
    width: 200px;
    height: 30px;
    text-align: right;
    border: 2px solid rgb(0, 0, 0);
    padding: 5px;
  }
  input[type="number0"] {
    width: 200px;
    height: 30px;
    text-align: right;
    border: 2px solid rgb(0, 0, 0);
    padding: 5px;
  }

  
  button {
    background-color: rgb(70, 70, 70);
    border: none;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 20px;
  }
  
  #risultato {
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 0, 0);
  }
  
  p{
    font-size: 20px;
  }
  label{
    font-size: 20px;
  }




