﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 483px;
    margin: 16px auto;
    border: 3px solid #231f20;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
}

header {
    padding: 25px 16px 16px;
}

article {
    padding: 0 16px;
}

footer {
    padding: 0 0 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.font {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 8px;
}

p {
    margin: 14px 0 25px;
}

h1 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
}

h1 strong {
    color: #227abe;
}

h1 span {
    font-style: italic;
    display: block;
    font-size: 16px;
}

h2 {
    font-size: 24px;
    margin: 0 0 16px;
    line-height: 28px;
    font-weight: 700;
}

a {
    color: #227abe;
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 482px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 374px) {
    footer {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
    }
}