@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
}
#wrapper {
    position: relative;
    max-width: 635px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat top center;
    overflow: hidden;
    padding: 1.125rem 1.75rem;
    height: 481px;
}
p {
    padding-bottom: 0.5rem;
    font-size: 1.25em;
    line-height: 1.1;
}
h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.692em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.563em;
    line-height: 1;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0rem 0rem 0rem 0rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.3rem;
}
h2, article {
    transform: rotate(-3deg);
}
.logo {
    margin: 0.25rem 0 7rem -0.375rem;
}
.flex p {
    color: #57585A;
    text-transform: initial;
    font-size: 1rem;
    line-height: 1.2;
    background-color: #fff;
    width: fit-content;
    padding: 0.375rem 0.75rem;
}
footer {
    padding: 0 0.5rem;
}
.flex {
    display: flex;
    align-items: center;
    gap: 2px;
}
@media only screen and (max-width: 634px) {
    body {
        text-align: center;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        height: auto;
        background: #FFDC01;
    }
    h2, article {
        transform: none;
    }
    .hide_m {
        display: none;
    }
    .flex {
        justify-content: center;
        gap: 0.25rem;
    }
    .logo {
        margin: 1.25rem 0;
    }
    article p {
        background-color: #fff;
        padding: 0.5rem 1rem;
        margin: 0 auto;
        width: fit-content;
    }
}
@media only screen and (max-width: 400px) {
    .flex {
        flex-direction: column;
    }
}