@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}
img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    border: 1px solid #000;
    padding: 2rem 3rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.link{
    text-decoration: underline;
    color: #0000FF;
}
h1 {
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem 0;
}
h2 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
p {
    margin-bottom: 1rem;
}
ul {
    margin: 0 0 1rem 2rem;
}
header{
    margin-bottom: 1.25rem;
}
figure{
    position: absolute;
    right: 2rem;
    bottom: 9rem;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    figure{
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    a.nowrap{
        white-space: normal;
    }
}
@media only screen and (max-width: 48rem) {
    #wrapper {
        padding: 1rem;
    }
}