@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 0.938rem;
    line-height: 1.5;
    font-weight: 400;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    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;
}
a:hover {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 400;
    padding: 1rem 0;
}
h2 {
    font-size: 0.938rem;
}
ul {
    padding: 0 0 1.5rem 3rem;
}
.margin {
    margin-bottom: 1.5rem;
}
.button {
    display: flex;
    justify-content: end;
    padding: .5rem 0;
}
.button a {
    padding: 10px 16px;
    background-color: rgba(226, 0, 32, 1.0);
    color: #fff;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: 1.3;
}
header {
    padding: 1rem;
    display: flex;
    border-bottom: 2rem solid rgba(55, 56, 75, 1.0);
}
article {
    padding: 1rem 2rem;
}
footer {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-around;
    background-color: rgba(209, 215, 218, 1.0);
}
footer div {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 2rem;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
@media only screen and (max-width: 45rem) {
    article,
    footer {
        padding: 1rem;
    }
}
@media only screen and (max-width: 35rem) {
    header,
    .button {
        justify-content: center;
    }
    h1 {
        text-align: center;
    }
    ul {
        padding-left: 1rem;
    }
    .margin {
        margin: 0;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
}