@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;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .062rem #000;
    padding: 0 4.375rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0495C5;
    text-decoration: none;
    white-space: nowrap;
}

.color {
    color: #0495C5
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 1.125rem;
    color: #30BCD6;
    line-height: 1.2;
    margin: 1.25rem 0 1rem;
}

h1 span {
    font-weight: normal;
}

.nowrap {
    white-space: nowrap;
    font-weight: inherit
}

h2 {
    font-size: 1.062rem;
    color: #00ADCC;
    margin: .937rem 0;
}

h3 {
    margin: 1.875rem 0 .937rem;
    font-size: 1.062rem;
    color: #00ADCC;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    padding-left: 2.187rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 1.25rem;
    line-height: 0.9;
    margin: 1px 0 0 -1.125rem;
}

ul + p {
    margin: 1.562rem 0 1.562rem .0;
}

header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin: 1.875rem 0 1.25rem;
    justify-content: space-between;
}

header img {
    width: 100%;
}

.section {
    width: 65%
}

article {
    padding-top: 1.25rem;
}

a.button {
    display: block;
    background: #00ADCC;
    opacity: 0.9;
    color: #fff;
    border-radius: 0.1875rem;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.4375rem 3.125rem;
    width: fit-content;
    text-align: center;
    margin: 1.25rem 0;
}

.flex {
    display: flex;
    column-gap: .5rem;
}

footer {
    display: block;
    line-height: 1.3;
    padding: 0 0 3.75rem
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    h1,
    h2,
    h3,
    ul + p {
        margin: 0 0 1rem
    }

    ul li:before {
        margin-left: -1.125rem;
        margin-top: 0;
    }

    header,
    footer p:last-of-type {
        margin: 0;
    }

    .section {
        width: 68%
    }

    .img {
        display: flex;
        justify-content: center
    }

    article {
        padding-top: 1rem;
    }

    a.button {
        margin: 1rem 0;
    }

    footer {
        padding: 0
    }

    .flex {
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
        margin: 1.25rem 0;
    }

}

@media only screen and (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    h1,
    .section p {
        text-align: center;
    }

    .section {
        width: 100%
    }
}

@media only screen and (max-width: 480px) {

    ul li {
        padding-left: 1.25rem;
    }

    a.button {
        margin: 1rem auto
    }

    footer p {
        text-align: center
    }
}

@media only screen and (max-width: 375px) {
    a.button {
        width: 100%
    }
}