@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.25em/1.4 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 586px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1.125rem;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1.125rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.125rem;
    list-style: none;
}
li {
    padding-left: 0.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.25rem;
}
main {
    background: #34A1AC url('../images/bg.jpg') no-repeat top center;
    padding: 0.75rem 0.5rem 0.5rem 2rem;
}
main :is(h1, h2, p, ul) {
    color: #fff;
}
header p {
    text-align: center;
    font-size: 1.05em;
    line-height: 1.3;
}
footer {
    padding: 0.25rem 0 0.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p {
    font-size: 0.85em;
    line-height: 1.5;
    padding: 0;
}
@media only screen and (max-width: 585px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(header, article) br {
        display: none;
    }
    main {
        background: #34A1AC;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    footer p {
        text-align: center;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
}