/*ESTILO DE SUBTITULOS*/
h2 {
    font-size: 2em;
    font-weight: bold;
    color: #003F5C;
    text-align: center;
}

/*BOTÓN*/
button {
    min-width: 100px;   
    padding: 8px 16px;  
    white-space: nowrap; 
    background-color: #003F5C;
    border-radius: 30px;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none; 
}

button:hover {
  background-color: #FFA500; /* color al pasar el cursor */
}

