body {
    background: #eeeeee;
    color: #222222;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
}

.content-home {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    text-align: center;
    max-width: 800px;
    margin: 20vh 32px 0;
    flex-grow: 1;
}

.content-home .title {
    font-size: 1.4em;
    margin: 40px 0;
    line-height: 32px;
    font-weight: bold;
}

.content-home .contact {
    font-size: 1.2em;
    margin: 40px 0;
    line-height: 32px;
    font-weight: 100;
    flex-grow: 1;
}

.content-terms-policy {
    align-self: center;
    max-width: 900px;
    line-height: 1.5em;
}

.content-terms-policy h3 {
    margin-top: 40px;
}

a:link, a:visited, a:link:active, a:visited:active{
    color: #333333;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 900px;
    align-self: center;
    border-bottom: 1px solid #ccc;
    padding: 32px 0;
    margin-bottom: 32px;
}

.header .logo img {
    width: 100px;
    text-align: left;
}

.header .text {
    flex-grow: 1;
    font-size: 24px;
    font-weight: bold;
    padding: 0 32px;
}

.footer {
    margin-bottom: auto;
    justify-self: flex-end;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #ccc;
    width: 900px;
    margin-top: 32px;
    padding-top: 32px;
}

.footer div {
    padding-bottom: 8px;
}

@media (max-width: 640px) {
    body {
        font-size: 12px;
    }
}