html, body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: #e8eff3;
    color: #4d4d4d;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
}

h1 {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-size: 36px;
    line-height: 50px;
}

h2 {
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

p {
    margin: 0;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    background: #9ea0a1;
    text-align: right;
}

.header a {
    line-height: 50px;
    margin-right: 20px;
    background: #d2d8db;
    padding: 7px;
    text-decoration: none;
    font-weight: bold;
    color: #4d4d4d;
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px;
    padding-top: 75px;
}

.logo {
    position: fixed;
    left: 10px;
    top: 10px;
    width: 290px;
    display: none;
}

@media (min-width: 986px) {
    .logo {
        display: block;
    }
    .header {
        height: 75px;
    }
    .header a {
        line-height: 75px;
    }
}


.logo img {
    width: 100%;
}

.circles {
    text-align: center;
    margin-bottom: 50px;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background: url("image1.jpg");
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: url("image2.jpg");
    margin-left: -40px;
    margin-right: -40px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: url("image3.jpg");
}

.circle {
    background-size: cover;
    display: inline-block;
    border-radius: 50%;
    border: 5px solid #2c3e50;
}

.content {
    padding: 20px;
}

.content-top {
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.content-block {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid grey;
}

.content-block:last-of-type {
    border: none;
}

.content-block svg {
    width: 80vw;
    max-width: 70px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-bottom: 10px;
    fill: #4d4d4d;
}

.functionality {
    text-align: center;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 20px);
    max-width: 300px;
    background: #cad0d3;
    padding: 10px;
    font-size: 20px;
}

.footer {
    line-height: 18px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.cookies-div {
    position: fixed;
    width: calc(100vw - 20px);
    height: auto;
    bottom: 0px;
    left: 0px;
    color: #b2b2b2;
    background-color: #2C3237;
    z-index: 99999;
    text-align: center;
    padding: 10px;
}

.cookies-div a {
    color: #d2d2d2;
}