@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v51-latin-300.eot');
    src: url('../fonts/roboto-v51-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-300.woff2') format('woff2'), url('../fonts/roboto-v51-latin-300.woff') format('woff'), url('../fonts/roboto-v51-latin-300.ttf') format('truetype'), url('../fonts/roboto-v51-latin-300.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v51-latin-500.eot');
    src: url('../fonts/roboto-v51-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-500.woff2') format('woff2'), url('../fonts/roboto-v51-latin-500.woff') format('woff'), url('../fonts/roboto-v51-latin-500.ttf') format('truetype'), url('../fonts/roboto-v51-latin-500.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-v51-latin-600.eot');
    src: url('../fonts/roboto-v51-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-600.woff2') format('woff2'), url('../fonts/roboto-v51-latin-600.woff') format('woff'), url('../fonts/roboto-v51-latin-600.ttf') format('truetype'), url('../fonts/roboto-v51-latin-600.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.43;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #ffc900;
    white-space: nowrap;
}

a:hover {
    color: #ffc900;
    text-decoration: underline;
}

a.link {
    color: #ffc900;
    text-decoration: underline;
}

a.link:hover {
    opacity: 0.62;
}

strong {
    font-weight: 600;
}

p {
    padding-bottom: 1.625rem;
}

h1 {
    font-size: 2.75rem;
    text-align: center;
    font-weight: 500;
    margin: 1.625rem 0;
}

h2 {
    font-size: 1.313rem;
    padding: 1rem 0 .5rem;
    font-weight: 500;
}

ul {
    list-style: none;
    padding-bottom: 1.125rem;
}

ul li {
    padding: 0 0 .5rem 1.25rem;
}

ul li:before {
    content: "\25B6";
    float: left;
    margin-left: -1.25rem;
    color: #ffc900;
}

.bg {
    display: flex;
    justify-content: center;
    padding: 2.75rem 2rem;
    background-color: #ffc900;
}

.flex {
    display: flex;
    gap: 2rem;
}

.flex>div {
    flex: 50%;
}

header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: end;
    background-color: #1a1a1a;
    box-shadow: 0 0 17px rgba(0, 0, 0, .26);
}

article {
    padding: 0 2rem;
}

article>img {
    margin: 0 auto 2.75rem;
}

footer {
    padding: 1.625rem 2rem 0;
    background-color: #000;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width: 54.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) {
    header {
        justify-content: center;
        padding: 1rem;
    }

    .bg {
        padding: 2rem 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1.625rem 1rem 0;
    }

}

@media only screen and (max-width: 40rem) {
    .flex {
        display: block;
    }

    .pb0 {
        padding-bottom: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
        padding-top: 0;
    }

    p {
        padding-bottom: 1.25rem;
    }

    ul {
        padding-bottom: .75rem;
    }

    article>img {
        margin: 0 auto 1.75rem;
    }
}