/*Google fonts para buscar tipo de letra*/
body {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background: #f4f4f4 url('images/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
}

header, footer {
    color: white;
    text-align: center;
    padding: 1rem 0;
}

header {
    background-color: #3b3a3a;
}

footer, .titulo {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #333;
    margin-top: 1rem;
}

.titulo {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Ajusta la altura según sea necesario */
}

h1 {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

.cuadroblanco {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container {
    text-align: center;
    margin: 20px 0;
}

.container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    
h2 {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    color: #000;
}

p {
    line-height: 1.6;
}

.section img {
    max-width: 40%;
    height: auto;
    margin-left: 2rem;
}

.reverse-section {
    flex-direction: row-reverse;
}

.reverse-section img {
    margin-left: 0;
    margin-right: 2rem;
}

.menu {
    background-color: rgba(34, 27, 27, 0.11);
    margin: 0;
    overflow: hidden;
    
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    display: block;
    color: rgb(243, 238, 238);
    text-align: center;
    padding: 14px 20px;
    text-decoration: underline;
}