@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 625px;
    border: solid 1px #000;
    background: #FFDE58;
}
p {
    padding-bottom: 1rem;
}
figure {
    display: flex;
    justify-content: center;
}
h1 {
    margin: 0 0 0.7rem;
    font-size: 2.1em;
    line-height: 1.1em;
}
h1 span {
    font-weight: 400;
}
h2 {
    font-size: 1.75em;
    line-height: 1.2;
}
h1, h2, .center {
    text-align: center;
}
h1, h3, h4, footer p {
    color: #4662F4;
}
h3 {
    font-size: 1.188em;
    line-height: 1.3;
    text-decoration: underline;
}
h4 {
    font-size: 1.9em;
    line-height: 1.1;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0.7rem 0 2rem;
    list-style: none;
    font-size: 1.188em;
    line-height: 1.4;
}
li {
    padding: 0 0 0 35px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -16px;
    float: left;
}
header {
    padding: 1rem;
}
header p {
    margin: 0 auto;
    font-size: 1.65em;
    line-height: 1.3;
    width: fit-content;
    padding: 3px;
    background: #4662F4;
    color: #fff;
    text-align: center;
}
article {
    padding: 0.5rem 1rem;
    background: #fff;
}
.banner {
    margin: 0 -1rem 1rem;
}
footer {
    padding: 0.3rem 0.5rem 0;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 245px;
    background: #FFDE58;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:624px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    br {
        display: none;
    }
    header p{
    	font-size: 1.313em;
    }
    h1{
    	font-size: 1.7em;
    }
    footer {
        position: static;
        width: 100%;
    }
    .block {
        display: block;
    }
}