/* Header */
header {
    background-color: #EFF1F2;
    height: 50px;
    display: flex;
    justify-content: flex start;
    align-items: center;
    box-shadow: 7px 4px 10px 1px rgba(0,0,0,0.4);
}
header .logo {
    margin-left: 1%;
    height: 40px;
}
header h1 {
    color: #152426;
    font-size: 25px;
    margin-left: 1%;
    width: 400px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: scale(1);
    transition: transform 0.1s ease-out;
}
header h1:hover {
    animation: grow 0.1s ease-out;
    transform: scale(1.04);
}
header a {
    text-decoration: none;
}
header nav {
    margin-left: auto;
    margin-right: 1%;
    display: flex;
}
header nav a {
    padding-left: 10px;
    padding-right: 10px;
    color: #152426;
    font-size: 20px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transform: scale(1);
    transition: transform 0.1s ease-out;
}
header nav a:hover {
        animation: grow 0.1s ease-out;
        transform: scale(1.1);
}
/* Body */
body{
    background-image: url("background.png");
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* Container */
article {
    margin: 50px auto;
    background: rgb(239, 241, 242, 0.5);
    margin-left: 10%;
    margin-right: 10%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInMove 0.5s ease-out;
    line-height: 1.5;
    align-items: center;
    align-content: center;
}
article h1 {
    color: #152426;
    text-align: center;
}
article h2 {
    color: #152426;
    text-align: center;
}
article .summary {
    color: black;
    text-align: center;
    font-size: 18px;
}
article .logo {
    margin-right: 20px;
    height: 100px;
    align-items: center;
}
article div img {
    float:left;
}
article table {
    margin: 0px auto;
}
/* Satire */

/* Footer */
footer {
    height: 50px;
    background-color: #EFF1F2;
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.49);
    display: flex;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
footer p {
    align-items: center;
    text-align: center;
    margin-left: 2%;
}
footer nav {
    margin-left: auto;
    margin-right: 1%;
    display: flex;
    align-items: center;
    text-align: center;
}
footer nav a {
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
    color: #152426;
    font-size: 20px;
}
footer nav a:hover {
    text-decoration: underline;
}
footer .satire {
    border: 2px #152426;
    text-align: center;
    background-color: rgba(228, 194, 0, 0.233);
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    height: 25px;
    margin-top: auto;
    margin-bottom: auto;
}
footer .satire p {
    margin-top: auto;
    margin-bottom: auto;
    text-decoration: underline;
}
