@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Verdana", "Calibri", "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.43;
    background: #EFEFEF
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 970px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 8px #666;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: underline dotted 1px #41a547;
    white-space: nowrap;
}

a:hover {
    color: #41a547;
    text-decoration: underline;
}

p {
    margin: 0 0 1.25rem;
}

span {
    white-space: nowrap
}

h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
    background-color: #fff;
    box-shadow: 0px 8px 30px -12px #97999b;
    color: #41a547;
    padding: 1.625rem;
    transform: translate(0, -20%);
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #41a547;
    margin: 0 0 1.875rem;
}

h3 {
    font-size: 1.313rem;
    margin: 1.875rem 0 .5rem;
}

ul {
    margin: 0 0 1.25rem 1rem;
}

section {
    text-align: center;
}

header {
    position: relative;
}

.logo {
    position: absolute;
    top: 1.5rem;
    right: 2.625rem
}

article {
    padding: 0 2.625rem .625rem
}

footer {
    padding: 0 2.625rem;
    border-bottom: 26px solid #eee;
}

hr {
    border: none;
    margin: 1.5rem -2.625rem 0;
    border-top: 1px solid #41a547;
}

@media only screen and (max-width: 969px) {
    #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: 800px) {
    .logo {
        top: 1rem;
        right: 1rem;
    }

    article {
        padding: 0 1rem .625rem
    }

    footer {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.6rem;
        padding: 1rem;
    }
}

@media only screen and (max-width: 600px) {
    .logo {
        position: static;
        margin: 1rem 0;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    a.wrap {
        white-space: normal;
    }

    h1 {
        transform: none;
        margin: 1rem 0;
        font-size: 1.5rem;
    }

    h2,
    h3 {
        font-size: 1.2rem;
    }
}