@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em 'Roboto', sans-serif;
    line-height: 1.3;
    font-weight: 300;
}

#wrapper {
    position: relative;
    max-width: 470px;
    margin: 1rem auto;
    border: 1px solid #FCB814;
    background: #FCB814;
    overflow: hidden;
    padding: 0.7rem 1rem 0;
    text-align: center;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 1.4em;
    line-height: 1.1;
}

strong, h1 {
    font-weight: 700;
}

h2 {
    font-size: 1.45em;
    line-height: 1.1;
    margin-bottom: 0.3rem;
    font-weight: 300;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

header {
    padding: 0rem;
}

figure {
    margin: 0 -1rem;
}

article {
    padding: 0rem;
}

article p {
    background: #00AEEF;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

footer {
    padding: 0.7rem 1rem 0.5rem;
    background: #fff;
    margin: 0 -1rem;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-flow: row wrap;
}

@media only screen and (max-width: 470px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}