@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'PT Sans Narrow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-narrow-v18-latin-regular.eot');
    src: url('../fonts/pt-sans-narrow-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-narrow-v18-latin-regular.woff2') format('woff2'), url('../fonts/pt-sans-narrow-v18-latin-regular.woff') format('woff'), url('../fonts/pt-sans-narrow-v18-latin-regular.ttf') format('truetype'), url('../fonts/pt-sans-narrow-v18-latin-regular.svg#PTSansNarrow') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'PT Sans Narrow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-narrow-v18-latin-700.eot');
    src: url('../fonts/pt-sans-narrow-v18-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-narrow-v18-latin-700.woff2') format('woff2'), url('../fonts/pt-sans-narrow-v18-latin-700.woff') format('woff'), url('../fonts/pt-sans-narrow-v18-latin-700.ttf') format('truetype'), url('../fonts/pt-sans-narrow-v18-latin-700.svg#PTSansNarrow') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 0.938rem;
    line-height: 1.4;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px #999;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p {
    margin: 0.938rem 0;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    text-align: center;
    color: #496a38;
    margin-top: 2rem;
}

h2 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    color: #496a38;
}

ul {
    padding: 0 0 0 1.15rem;
}

.info {
    display: flex;
    gap: 1rem;
    text-align: center;
    padding-top: 1rem;
}

.info p {
    flex: 25%;
    margin: 0;
}

.center {
    text-align: center;
}

.margin {
    margin-bottom: 1.875rem;
}

header {
    display: flex;
    padding: 1.25rem;
}

article {
    padding: 1rem 3rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1rem;
    gap: 1rem;
}

.button a {
    padding: 8px 20px;
    background-color: #496a38;
    border: 1px solid #496a38;
    font-size: 1rem;
    color: #fff;
    transition: .1s;
}

.button a:hover {
    background-color: #fff;
    color: #496a38;
    text-decoration: none;
}

@media only screen and (max-width: 59.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: 48rem) {
    header {
        justify-content: center;
    }

    article {
        padding: 1rem;
    }

    h1 {
        margin-top: 0.5rem;
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 30rem) {
    .info {
        flex-direction: column;
    }
}