
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    font-family: sans-serif;
}

body{
    line-height: 1.6;
    background-color: #f9f9f9;
}
.cuerpo{
    background-color: #efcead;
}

header{
    background-color: rgba(134, 78, 38, 0.81);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav h1{
    color: white;
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin-left: 20px;
}

nav a{
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover{
    color: #ffffff;
}


section{
    background:rgba(245, 224, 210, 1);
    width: 80%;
    padding: 20px;
    max-width: 800px;
    margin:30px auto;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(190, 151, 107, 0.75)
}


article{
    background: white;
    margin: 15px 0;
    padding: 20px;
    border-left: 5px solid #ff9800;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

article ul{
    margin-left: 20px;
    margin-top: 10px;
}


table{
    width: 100%;
    margin-top: 20px;

    border-collapse: collapse;
}

th, td{
    padding: 12px;
    border: 1px solid #ddd;
    margin: 5px;
}

th{
    background-color: #ff9800;
    color: white;
}


form{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

input, select, textarea, button{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button{
    background: #1a1a1a;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

button:hover{
    background: #ff9800;
}