@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 16px;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #ededed;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 1.5rem 2.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    color: #fe7235;
    text-align: center;
    margin: 1rem 0;
    font-style: italic;
}
h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
article p {
    margin-bottom: 1rem;
}
ul {
    margin: 0 0 1.5rem 1.2rem;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 1.5rem;
    gap: 3rem;
}
@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;
    }
    span{
        display: inline-block;
    }
}
@media only screen and (max-width: 46rem) {
    #wrapper {
        padding: 1rem;
    }
}
@media only screen and (max-width: 35rem) {
    ul {
        margin: 0 0 1rem 1rem;
    }
}