@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 700 2em/1.3 Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 428px;
    border: solid 1px #000;
    background: #fff;
    padding: 0.5rem;
}
#wrapper:before {
    background: #FFF101;
    border-radius: 0 60px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
}
p {
    padding-bottom: 0.3rem;
    position: relative;
}
h1 {
    margin: 0 0 0.25rem 2rem;
    font-size: 1.392em;
    line-height: 1.1em;
    font-family: Arial Black, sans-serif;
    position: relative;
}
h1:before {
    position: absolute;
    content: "\2022";
    left: -24px;
    top: 0;
}
h1 + p {
    font-size: 1.25em;
}
header p {
    text-align: center;
}
.tel {
    background: #000;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    color: #FFF101;
    font-size: 1.3em;
    line-height: 1.1;
    margin: 0 -0.5rem 0 3.625rem;
}
footer p, article p {
    padding-left: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:427px) {
    body{
        font-size: 1.5em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a {
        display: inline-block;
    }
    br, #wrapper:before {
        display: none;
    }
    .tel{
        margin: 0 0 0.3rem;
        text-align: center;
        padding: 0.5rem;
    }
    :is(article, footer) p {
        padding: 0 0 0.5rem;
        text-align: center;
    }
}