/* Reset basico */
body, h1, h2, p, ul, li, form, label {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:Arial, Helvetica, sans-serif ;
    line-height: 1.6;
    background-color:#ebd8d0;
    color: #000; ;
    padding: 20px;
}
/* Estilos del Encabezado */
head {
    text-align: center;
    padding: 20px;
    background-color:#ffa5ab ;
    color: #000;;
}
header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}
header p {
    font-size: 1.2em;
}
/* Estilos de secciones */
section {
    margin: 20px 0;
}
h2{
    border-bottom: 2px solid ;
    margin-bottom: 10px;
    font-size: 1.5em;
}
ul{
    list-style-type: none;
}
ul li {
    padding: 5px 0;
}
/* Estilos del Formulario */
form {
    display: flex;
    flex-direction: column;
}
form button {
    padding: 10px;
    background-color:#a47148 ;
    color: #000;;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
form button:hover {
    background-color:#a53860 ;
}
/* Estilos del Pie de Pagina */
footer {
    text-align: center;
    padding: 10px;
    background-color:#a78a7f;
    color: #000; ;
    margin-top: 20px;
}
/* Diseño Responsivo */
@media (max-width:600px) {}
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
