*{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}


body{
    background-color: #f5f5f5;

}

.Cuadro {
    background-color: white;
    width: 80%;
    height: 80%;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}

.Cuadro h1 {
    color:darkslategray;
    margin-bottom: 25px;
}
.Cuadro h3 {
    color: #3498db;
}

.dato {
    margin-left: auto;
    margin-right: auto;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}

p{
    margin-top: 10px;
    margin-bottom: 10px;
}
#boton {
    background-color: #27A9E1;
    border-radius: 10px;
    width: 20%;
    height: 50px;
    margin-top: 20px;
    align-self: center;
    border: none;
    outline: none;
    transition: 0.7s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);


}

#boton:hover {
    transform: scale(1.1);
}

form {
    width: 90%;
}