@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #505050;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    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.link {
    color: #3654AC;
}

a.link:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.3;
    text-align: center;
    color: #757575;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0 1rem;

}

h2 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    font-weight: normal;
    color: #243872;
}

h3 {
    color: #757575;
    font-weight: normal;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

h3 span {
    font-size: 1.2rem;
}

h4 {
    color: #17a2b8;
    font-size: 1rem;
    text-align: center;
    margin: 1rem 0 2rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 .5rem 2rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.5rem;
    color: #ffb600;
    line-height: 1.2;
}

.info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

.info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

header {
    display: flex;
    padding: 1rem 2rem;
}

article {
    border-top: 4px solid #ffb600;
    padding: 1rem 2rem;
}

footer {
    padding: 2rem;
    background: #757575;
    color: #fff;
    text-align: center;
}

footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    line-height: 1;
    gap: 3rem;
}

footer .social {
    font-size: 2.5rem;
}

@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: 44rem) {
    header {
        justify-content: center;
    }

    header,
    article {
        padding: 1rem;
    }

    .info p {
        flex: 0 0 50%;
        justify-content: center;
    }

    footer {
        padding: 2rem 1rem;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        padding-top: .5rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3,
    h3+p {
        text-align: center;
    }

    h4 {
        margin: 0 0 1rem;
    }

    .info {
        padding: 1rem 0;
    }

    ul li {
        padding: 0 0 .5rem 1.5rem;
    }
}