﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 610px;
    margin: 16px auto;
    border: 1px solid #777;
    background: url('background.jpg') no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header {
    width: 100%;
}

article {
    padding: 0 0 8px 35px;
    flex: 1 1 0;
    margin-right: -32px;
}

footer {
    padding: 0 13px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    margin: 1px 0 0;
}

footer p {
    font-weight: 300;
    background: #023d61;
    padding: 5px 10px;
    margin: 15px -14px 0 0;
}

strong {
    font-weight: 900;
}

p {
    margin: 0 0 8px;
}

h1 {
    margin: 0 0 15px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

h1 small {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin: 2px 0 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    display: inline-block;
    border-bottom: 3px solid #fff;
}

h3 {
    margin: 16px 0;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2022';
    color: #200e00;
    float: left;
    font-size: 25px;
    text-indent: -20px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #083a5d !important;
}

.fontsize {
    font-size: 19px;
    line-height: 25px;
}

@media all and (max-width: 609px) {
    #wrapper {
        margin: 0;
        border: none;
        hyphens: auto;
        background: linear-gradient(to bottom, #1c69b4 0%, #1c69b4 25%, #1c69b4 50%, #1e73ba 75%, #3495d2 100%);
    }

    article {
        padding: 16px 16px 0;
        margin: 0;
    }

    h1 {
        font-size: 24px;
        line-height: 28px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    footer {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 16px;
        margin: 0;
    }

    footer p {
        margin: 0;
        padding: 10px 16px;
        text-align: center;
        line-height: 1.4;
        width: 100%;
    }

    a br {
        display: none;
    }
}