@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;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: #333333;
    font: 400 1em/1.4em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto;
    border: 1px solid #333333;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
:is(h1, h2, h3, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.65em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: -3px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.big {
    font-size: 1.4em;
    line-height: 1.2;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.box {
    width: 48%;
}
header {
    padding: 1.5rem 3rem;
    background: #FFFC00;
}
article {
    padding: 1rem 3rem;
}
footer {
    padding: 2rem 3rem 1rem;
    background: #212529;
    color: #fff;
}
@media only screen and (max-width:1023px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    span {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
    }
    .box {
        width: auto;
    }
    h1 {
        font-size: 2em;
    }
    header, article, footer {
        padding-inline: 2rem;
    }
}
@media only screen and (max-width:480px) {
    header, article, footer {
        padding: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
}