body {
    background-color: rgb(236, 234, 234);
    color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    
}

header {
    text-align: center;
    padding: 20px 0;
}

.titulo{
    list-style-type: none;
}

#logo{
    margin-left: 1px;
    margin-top: 10px;
    height: 2.5em;
}

strong{
    font-weight: 700;
}

h1 {
    font-size: 36px;
    text-transform: none;
    color: #ff6900;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 8% 15% 5% 15%;
}
div {
    display: inline;
}

main {
    padding: 20px 0;
}

p ol{
    text-align: justify;
}
ol{
    margin-top: 0;
    box-sizing: border-box;
    list-style-type: decimal;
    margin-bottom: 30px;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

li{
    display: list-item;
    text-align: -webkit-match-parent;
}

.lorem {
    text-align: justify;
    display: block;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 2% 15% 5% 15%;
}

footer {
    background-color: #1E73BE; /* Color azul */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2% 15% 5% 15%;
}

.pie{
    width: auto;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .container {
        flex-direction: column
    };
    h1 {
        font-size: 24px;
    }
}

/*******************************************************************************/
