@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap; 
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot'); 
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), 
         url('../fonts/open-sans-v40-latin-700.woff') format('woff'), 
         url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'),
         url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg'); 
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

p,
ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

h1 {
    color: #7F7F7F;
    text-align: center;
    font-size: 1.75rem;
    margin: 1.75rem 0 1rem;
}

h2 {
    margin: 2.187rem 0 .75rem;
    font-size: 1rem;
}

h3 {
    font-size: 2.187rem;
    color: #575756;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
    text-align: justify;
}

p span {
    white-space: nowrap
}

ul {
    list-style-type: circle;
    margin: 1rem 0 1rem 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.875rem 3.125rem 0;
}

article {
    padding: 1.25rem 3.125rem;
}

footer {
    background: #3B3C3D;
    padding: .625rem 3.125rem 1.25rem;
    border-top: solid #FFFF00;
    color: #fff;
}

footer section {
    display: flex;
    gap: 5.625rem;
}

footer section p:last-of-type {
    margin: 0;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }
}

@media only screen and (max-width: 48rem) {
    h1 {
        font-size: 1.25rem
    }

    h1 br {
        display: none
    }

    h3 {
        margin: .312rem 0;
    }

    ul,
    p {
        margin: 0 0 1rem 0;
    }


    header,
    footer {
        padding: 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer section {
        flex-direction: column;
        gap: 1rem;
    }

    footer p {
        text-align: center;
    }

}

@media only screen and (max-width: 33.687rem) {
    header {
        flex-direction: column;
        align-items: center;
    }
}