@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 1.25em/1.3 Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 730px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #1E9FC4;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0.5rem 1rem;
    font-size: 1.28em;
    line-height: 1.25;
}
h1 span {
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    position: relative;
}
header a {
    position: absolute;
    width: 20%;
    height: 28%;
    left: 5.25%;
    top: 0;
}
article {
    padding: 0.25rem 2.625rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex p {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.063em;
    line-height: 1.3;
}
footer {
    padding: 0.75rem 0.5rem 0.5rem 0.875rem;
    background-color: #E6E7E9;
    position: absolute;
    top: 2.625rem;
    right: 0;
}
footer p {
    color: #57585A;
}
@media only screen and (max-width: 729px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article {
        padding: 0.5rem 2rem;
    }
    h1 {
        margin: 0 0 1rem;
    }
    footer {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    footer p {
        text-align: center;
    }
    :is(h1, footer) br {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.125em;
    }
    .flex br {
        display: none;
    }
    .flex {
        display: block;
    }
    .flex p {
        padding-bottom: 1rem;
    }
    article {
        padding: 0.5rem 1rem 1rem;
    }
}