h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #212529;
}

.page {
    background-color: rgb(235, 232, 232);

}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(161, 235, 70);
    padding: 10px;
}

.logo {
    width: 70x;
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;

}

nav a {
    margin: 0 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 3px;
    background-color: aliceblue;
}

.historia {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(215, 80, 80);
    color: aliceblue;
    padding: 20px;
    margin: 30px;
    text-align: center;
}

.historia p {
    font-size: 1.2em;
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.timeline img {
    max-width: 90%;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: rgb(161, 235, 70);
    padding: 20px 0;
}

.pie-pagina {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pie-pagina p {
    text-align: center;
    flex: 1;
}

.redes-sociales {
    display: flex;
    gap: 10px;
}

.redes-sociales img {
    height: 5vh;
}