@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
h1,h2,strong{
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.792em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.6em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: ">";
    float: left;
    margin-left: -1rem;
}
header{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}
article figure{
    margin-bottom: 1rem;
}
footer p{
    font-size: 0.8em;
    line-height: 1.3em;
}
@media only screen and (max-width: 699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    header{
        justify-content: center;
    }
    p {
        text-align: left;
    }
    footer p{
        text-align: center;
    }
    h1{
        font-size: 1.8em;
    }
}