* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

main {
    flex: 1;
}

#header {
    display: flex;
    justify-content: center;
    background-color: #e6e6e6;
    padding: 20px;
}

#logo {
    width: 150px;
}

.h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    text-decoration: blink;

}

.titulosH1 {
    text-align: center;
    background-color: #c4c4c4;
    padding: 20px;
    margin-bottom: 150px;
}

.titulos {
    text-align: start;
    background-color: #c4c4c4;
    padding: 20px;
}

h1,
h2 {
    color: #005677;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;

}

article {
    padding: 30px;
    font-style: normal;
    font-size: 15px;
    line-height: 110%;
}

table,
li {
    padding: 7px;
}

footer {
    background-color: #005677;
    display: flex;
    justify-content: center;
    align-items: center;

}

footer h2,
footer p {
    padding: 10px;
    color: white;
    font-size: xx-large;

}


footer a {
    text-decoration: none;
    color: white;
}