#html {
    font-family: sans-serif;
    margin: 0px;
    padding: 0px;
}

.img {
    height: 230px;
    width: 230px;
}

.titulo {
    font-size: 32px;
    font-weight: bold;
}

.subtitulo {
    font-size: 24px;
}

.bg-nota {
    border: 1px solid darkgray;
    border-radius: 6px;
    background-color: grey;
    width: auto;
}

.text {
    font-size: 16px;
    color: white;
    padding-top: 3px;
}

.text2 {
    text-align: end;
    padding: 0px;
    margin: 0px;
    color: white;
    font-size: 14px;
}

.label {   
    font-size: 16px;
    font-weight: 600;
    color: black !important;
}

.input {
    border-radius: 4px !important;
    padding: 5px !important;
    margin-top: 4px !important;
    margin-bottom: 10px !important;
    border: 2px solid #003256 !important;
    height: 35% !important;
    width: 75% !important;
}

.input:focus {
    outline: none !important;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] { -moz-appearance:textfield; 
appearance: textfield;
}

.boton {
    border-radius: 6px !important;
    padding: 4px !important;
    margin: 10px !important;
    background-color: #003256 !important;
    border: 0px !important;
    height: 15% !important;
    width: 80% !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: white !important;
}

.mt-yo {
    margin-top: 150px !important;
}


.boton:hover {
    background-color: #043A86 !important;
    color: aliceblue !important;
}

.resultado {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    color: #003256;
    margin: 20px;
}

.resultado-numero {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    color: #003256;
    margin: 20px;
}

@media (max-width: 767px) {
    .img {
        height: 200px;
        width: 200px;
    }
    
    .titulo {
        font-size: 24px;
        font-weight: bold;
    }
    
    .subtitulo {
        font-size: 18px;
    }
    
    .bg-nota {
        border: 1px solid darkgray;
        border-radius: 6px;
        background-color: grey;
        width: 75%;
    }
    
    .text {
        font-size: 12px;
        color: white;
        padding-top: 3px;
    }
    
    .text2 {
        text-align: end;
        padding: 0px;
        margin: 0px;
        color: white;
        font-size: 11px;
    }
    
    .label {   
        font-size: 16px;
        font-weight: 600;
        color: black !important;
    }
    
    .input {
        border-radius: 4px !important;
        width: 230px !important;
        height: 30px !important;
        padding: 5px !important;
        margin-top: 4px !important;
        margin-bottom: 10px !important;
        border: 2px solid #003256 !important;
        background-color: white !important;
        color: black;
    }

    input[type=date] {
        color: black;
    }
    
    .mt-yo {
        margin-top: 0px;
    }

    .input:focus {
        outline: none !important;
    }
    
    .boton {
        border-radius: 6px !important;
        padding: 4px !important;
        margin: 10px !important;
        background-color: #003256 !important;
        border: 0px !important;
        height: 40px !important;
        font-size: 18px !important;
        width: 250px !important;
        font-weight: bold !important;
        color: white !important;
    }

    .resultado {
        font-size: 22px;
        text-align: center;
        font-weight: bold;
        color: #003256;
        margin: 20px;
    }

    .resultado-numero {
        font-size: 18px;
        text-align: center;
        font-weight: bold;
        color: #003256;
        margin: 20px;
    }
}