:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    max-width: 500px;
    margin: 16px auto;
    border: 1px solid #231f20;
    position: relative;
    background: rgb(41, 90, 168);
    background: -moz-linear-gradient(top, rgb(41, 90, 168) 0%, rgb(45, 96, 172) 50%, rgb(51, 101, 176) 100%);
    background: -webkit-linear-gradient(top, rgb(41, 90, 168) 0%, rgb(45, 96, 172) 50%, rgb(51, 101, 176) 100%);
    background: linear-gradient(to bottom, rgb(41, 90, 168) 0%, rgb(45, 96, 172) 50%, rgb(51, 101, 176) 100%);
}

header {
    margin: 16px 16px 0;
    background: #fff;
    padding: 16px 16px 12px;
}

article {
    margin: 0 16px;
    background: #fff;
    padding: 0 16px;
}

.logo {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
}

.logo p {
    position: absolute;
    bottom: 10px;
    left: 16px;
    z-index: 999;
    color: #fff;
    font-size: 10px;
    line-height: 1.6;
}

.font {
    font-family: "Times New Roman", Times, serif;
    margin: 0 0 10px;
}

strong {
    font-weight: 900;
}

h1 {
    font-weight: 900;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
}

h1 small {
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 10px;
}

h1 span {
    font-size: 16px;
}

h2 {
    font-weight: 700;
    font-size: 0.825rem;
    line-height: 1.5;
    background: #231f20;
    color: #fff;
    margin: 0 -16px;
    padding: 6px 16px;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 498px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 16px 0 0;
    }

    header {
        margin: 0 16px;
    }

    .logo p {
        position: static;
        color: #231f20;
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        margin: 16px 0 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }
}

@media all and (max-width: 374px) {
    h1 {
        font-size: 21px;
    }
}