* {
    font-family: "Arial";
}

a {
    color: rgb(0, 163, 218);
}

header, main, footer {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

header img {
    height: 120px;
    margin-right: 10px;
}

header span {
    display: flex;
    background-color: rgb(172, 220, 236);
    color:rgb(255, 255, 255);
    min-height: 42px;
    align-self: center;
    align-items: center;
    padding: 6px 20px;
    margin-left: auto;
    font-size: 26px;
}

main {
    flex-direction: column;
}

main h1 {
    margin-bottom: 10px;
}

main h2 {
    margin-top: 0;
    font-weight: normal;
    font-style: italic;
}

footer {
    flex-direction: column;
    text-align: right;
}