body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background:#753807;
    color: black;
}

header {
    background-color: #ffc107;
    overflow: hidden;
}

.encabezado img{
    height: 210px;
    width: 100%;
}

.encabezado h1{
    text-align: center;
    color: black;
    margin-top: 10px;
    font-weight: bold;
}

.container-nav {
    width: 85%;
    margin: auto;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

form.d-flex {
    gap: 10px;
}

.container {
    width: 85%;
    margin: auto;
    margin-top: 30px;
}

.menu {
    width: 23%;
    float: left;
}

.container h2 {
    font-weight: bold;
}

.menu a {
    display: block;
    padding: 12px;
    background: #7b7b7b;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
}

.menu a:hover {
    background: #cacaca;
}

.content {
    width: 70%;
    float: right;
    background: #7b7b7b;
    padding: 20px;
    border-radius: 5px;
    border-style: none;
    border-radius: 10px;
}

.content input {
    display: block;
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    border-style: none;
    border-radius: 7px;
}

.content h3 {
    font-weight: bold;
}

.content label {
    font-size: 18px;
}

.content button {
    padding: 8px 12px;
    background: #ffc107;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.content button:hover {
    background: white;
}

.content h3 {
    font-weight: bold;
    margin-bottom: 18px;
}

.content ul li {
    font-size: 18px;
}

.container::after {
    content: "";
    display: block;
    clear: both;
}

.card-box {
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.bg-yellow {
    background-color: #ffc107;
}

.card-box h5 {
    text-align: center;
    font-weight: bold;
}

.card-box h3 {
    text-align: center;
    font-size: 25px;
}

.footer-bottom {
    color: white;
    text-align: center;
    background: #222;
    padding: 10px;
}

.footer-contenido {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-seccion {
    max-width: 250px;
    margin-left: -50px;
}

.footer-seccion a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px;
}

.footer-seccion a:hover {
    text-decoration: underline;
}