* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    font-size: 10px;
}

body {
    background-color: #fff;
    background-image: url('../img/background.svg'), linear-gradient(to bottom, #fff 0%, #aaa 100%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    color: #222;
    font-family:-apple-system,Roboto,Helvetica,sans-serif;
    font-size: 1.6rem;
    line-height: 1.15;
    position: relative;
}

a {
    color: #4882a4;
}

img {
    vertical-align: middle;
}

header, footer {
    align-items: center;
    display: flex;
}

header {
    height: 15rem;
}

main {
    margin-bottom: 5rem;
}

footer, footer a {
    color: #fff;
}

footer {
    background-color: #526176;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 0;
}

h1, p {
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 3.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

ol, ul.list-style-disc {
    padding-left: 2.5rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul.list-style-disc {
    list-style-type: disc;
}

.logo {
    display: block;
    width: 20rem;
}

.container {
    margin: 0 auto;
    max-width: 768px;
    width: 95%;
}

.container-left, .container-right {
    flex: 1 1 50%;
}

.footer__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .footer__container {
        flex-direction: column;
    }
}
