/*tudo - resetar os estilos*/
*{ 
margin: 0;
padding:0;
}

h1{color: rgb(1, 1, 14); 
    text-align: center;
    font-size: 45px;

}

.topo{
    color: #6b7a94;
    text-align: center;
    margin: 16px;
    font-weight: bold;
}

body{
    font-family: Arial, Helvetica, sans-serif;/*troca a fonte*/
    background-color: rgb(86, 209, 129);
    color: rgb(0, 0, 0);
    max-width: 520px;
     margin: 0 auto;
    padding: 24px;
}

.gasto-total{
    background-color: #006400;
    color: #ffffff;
    padding: 24px;
    text-align: center;
    border-radius: 19px;
    
}

.total{
    font-size: 42px;
    font-weight: bold;
    margin: 12px;

}


.gasto{ 
    font-size: 15px;
    font-weight: bold;
}

label{
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    font-weight: bold;
    border: 4px dashed #c3cfe0;
    display: block;
    margin: 16px;
    cursor: pointer;

}

input{
    display: none;/* esconder input */
}

.comprovante {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.itens {
  white-space: pre-line;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5b78;
}

.itens strong {
  font-size: 17px;
  color: #22304a;
}

.total-nota {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed #d6dee9;
  padding-top: 12px;
  margin-top: 12px;
  font-size: 15px;
  color: #6b7a94;
}

.total-nota strong {
  font-size: 20px;
  color: #0f766e;
}