@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

h1,
h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    background: #FF0028;
    color: #fff;
    padding: .312rem .625rem .312rem;
    font-weight: normal;
    margin: .937rem 0;
    width: fit-content;
}

h3 {
    color: #FF0028;
    font-weight: normal;
    font-size: 1.125rem;
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
}

ul li {
    padding-left: 2.187rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.875rem;
    font-size: .625rem;
    line-height: 2.2;
}

article {
    padding: .625rem 3.125rem;
}

.flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0 1.5rem;
}

.flex p {
    text-align: center;
}

.flex img {
    margin: 0 auto 1.25rem;
    display: block;
}

footer {
    background: rgb(207, 50, 35);
    background: linear-gradient(90deg, rgba(207, 50, 35, 1) 0%, rgba(166, 45, 54, 1) 46%, rgba(160, 93, 93, 1) 100%);
    padding: 2.5rem 3.125rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    color: #fff;
    margin: 0
}

footer img {
    margin: 0 0 1.25rem;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article,
    footer {
        padding: 1rem
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .flex {
        flex-wrap: wrap;
    }

    .flex div {
        width: 30%;
    }
}

@media only screen and (max-width: 48rem) {

    h1,
    h2 {
        text-align: center;
        margin: 1rem auto
    }
}

@media only screen and (max-width: 39.375rem) {
    .flex div {
        width: 47%
    }

    footer {
        display: block;
    }

    footer img {
        margin: .625rem auto;
        display: block
    }

    footer p {
        text-align: center
    }
}

@media only screen and (max-width: 28rem) {
    .flex {
        display: block;
    }

    .flex div {
        width: 100%
    }
}