* {
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 1rem auto;
    border: 2px #231F20 solid;
    max-width: 480px;
    color: #231F20;
    position: relative;
    padding: 1px 1px 10px;
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    line-height: 18px;
    font-size: 15px;
    text-align: center;
    overflow: hidden;
}

p {
    padding-bottom: 10px;
}

h1 {
    margin: 0 -5px 10px -10px;
    font-size: 18px;
    line-height: 21px;
    background: #DF1922;
    color: #fff;
    padding: 14px 10px;
}

h1 span {
    display: block;
    font-size: 16px;
    line-height: 22px;
}

h2 {
    font-size: 21px;
    line-height: 23px;
    margin: 0;
    flex: 1 1 0;
}

h2 span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    margin: 4px 0 0;
}

a {
    color: #231F20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a u {
    color: blue;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
    border: none;
}

ul {
    margin-bottom: 15px;
    padding: 0;
    list-style: none;
}

ul li {
    background: url(iconlist.jpg) no-repeat 0 5px;
    padding-left: 20px;
}

.clear:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

header {
    padding: 10px 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

article {
    padding: 0 10px 8px;
}

.flex {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 8px 12px 0 0;
}

.flex div {
    flex: 1 1 0;
}

.flex p a {
    color: #065ea9;
    text-decoration: underline;
}

.flex p:last-of-type {
    padding: 0;
}

footer {
    background: #939598;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    margin-right: 5px;
    padding: 0 0 0;
}

footer a {
    color: #fff;
}

@media only screen and (max-width:480px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    h1 {
        font-size: 18px;
        line-height: 22px;
    }

    h1 span {
        font-size: 14px;
        line-height: 20px;
    }

    h2 {
        font-size: 18px;
        line-height: 20px;
    }

    h2 span {
        font-size: 15px;
        line-height: 20px;
    }

    .no {
        display: none;
    }

    .link {
        word-break: break-all;
    }
}

@media only screen and (max-width:395px) {
    :is(header, .flex) {
        flex-direction: column;
    }

    .flex {
        padding: 8px 0 0;
    }
}