@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.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 59.375rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 1.875rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .937rem;
}

ul {
    margin: 0 0 1rem 1.25rem;
}


h1 {
    font-size: 1.75rem;
    margin: 1.875rem 0;
    width: 60%;
    line-height: 1.2;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem;
}
h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

main {
    display: flex;
    justify-content: space-between;
}

.margin_bottom {
    margin-bottom: 4.375rem;
}

article {
    width: 65%;
}

.flex {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
}

.flex p {
    text-align: center;
}

.column {
    width: 10em;
}

footer {
    width: 30%;
}

a.button {
    background-color: #17181a;
    border: .062rem solid white;
    color: #f7f8f9;
    padding: .75rem 1.5rem;
    display: block;
    text-align: center;
    margin-bottom: .312rem;
}

a.button:hover {
    background: #A8AAAF;
    color: #000;
}

.flex1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.875rem;
}

.flex1 i {
    border: 1px solid #a8aaaf;
    padding: .625rem 3.125rem;
    font-size: 1.562rem;
}

.flex1 i:hover {
    border: 1px solid #17181a;
}

.flex2 {
    border-top: 1px solid #a8aaaf;
    border-bottom: 1px solid #a8aaaf;
    display: flex;
    align-items: center;
    padding: .625rem 0;
    column-gap: .625rem;
}

.flex2 p {
    margin: 0;
}

@media only screen and (max-width: 59.312rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    header {
        display: flex;
        justify-content: center;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        width: 100%;
        text-align: center;
    }

    h1 br {
        display: none;
    }
}

@media only screen and (max-width: 53.062rem) {
    main {
        display: block;
    }

    article,
    footer {
        width: auto;
    }

    .flex,
    .flex1 {
        justify-content: center;
        column-gap: .937rem;
    }

    footer p {
        text-align: center;
    }

    .flex2 {
        flex-direction: column;
        align-items: center;
    }
}