@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.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 1.5rem -.437rem #000000;
    box-shadow: 0 0 1.5rem -.437rem #000000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

.margin {
    margin: 0;
}

ul {
    margin: 0 0 1.5rem 1.5rem;
    color: #2c77bc;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #fff;
    margin-top: 1.5rem;
}

h1 span {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    color: #2c77bc;
}

.blue {
    background-color: #2c77bc;
    padding: 1.5rem 4rem;
}

.blue p {
    color: #fff;
}

article {
    padding: 1.5rem 4rem;
}

article p {
    color: #2c77bc;
}

footer {
    display: flex;
    gap: 1rem;
    justify-content: end;
    border-bottom: 1.5rem solid #F68B1F;
}

@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: 40rem) {
    article {
        padding: 1rem 2rem;
    }

    .blue {
        padding: 1rem;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    footer {
        justify-content: center;
    }
}

@media only screen and (max-width: 30rem) {
    article {
        padding: 1rem;
    }

    h1 {
        text-align: center;
    }

    footer {
        flex-wrap: wrap;
    }
}