@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 600 1em/1.3em "Segoe UI", Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #00541F;
    overflow: hidden;
}
p {
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.4375em;
    line-height: 1.1;
    font-weight: 600;
}
strong {
    font-weight: 900;
    color: #FEBB11;
    font-size: 1.25em;
}
article {
    padding: 1rem;
}
footer {
    padding: 0 1rem 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0 4rem;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 {
        font-size: 1.25em;
    }
    footer {
        gap: 2rem;
    }
}