.body{
    background-color: #C6D4E0;
    color: #040403;
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 814px;
    margin: auto;
    align-items: baseline;
}

.header__image{
    background-image: url(/img/logo.png);
    width: 47px;
    height: 47px;
    display: none;
}

h1{
    text-align: center;
    font-weight: 500;
    line-height: 35px;
    font-size: 30px;
}

.content{
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    flex: none;
    order: 1;
    flex-grow: 0;
    border-radius: 8px;
    max-width: 90%;
    
    margin: auto;
    padding-bottom: 20px;
}

.content__image{
    background-image: url(/img/content-image.png);
    border-radius: 4px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    max-width: 95%;
    height: auto;
    margin: 20px auto;
}

h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin: 20px auto 0 auto;
    padding: 0;
    color: #3B74A4;
    text-align: center;
}

ul{
    margin: 0 20px;
    padding-inline-start: 20px;
}

li{
    margin: 0 0 20px 0;
}

ol{
    margin: 0 20px;
    padding-inline-start: 20px;
}

li::marker {
    color: #3B74A4;
    }

p{
    margin: 0 20px;
    padding: 0;
}

.footer{
    background-color: #3B74A4;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 80px;
}

.footer__copyright{
    margin: 0;
    padding: 42px 0;
}

@media screen and (min-width: 850px) {
    .content{
        max-width: 814px !important;
        font-size: 18px;
        line-height: 24px;
    }
    h1{
        font-size: 40px;
        line-height: 47px;
    }
    h2{
        font-size: 22px;
        line-height: 28px;
    }
    .header__image{
        display: block;
    }
}