:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    max-width: 429px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 0 10px 10px;
    background: #03539f;
}

article p {
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 3px;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 22px 0 26px;
}

strong {
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 131px;
    line-height: 1;
    text-align: center;
    color: #d2232a;
}

h1 span {
    font-weight: 700;
    display: block;
    font-size: 42px;
    margin: 2px 0 0;
    color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

a.font {
    font-size: 26px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 428px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    footer p {
        text-align: center;
        font-size: 16px;
        line-height: 23px;
    }

    p span {
        white-space: nowrap;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 29vw;
    }

    article a {
        white-space: normal !important;
    }

    br {
        display: none;
    }
}