@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/noto-sans-v42-latin-300.eot'); /* IE9 Compat Modes */
  src: url('../fonts/noto-sans-v42-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-v42-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/noto-sans-v42-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/noto-sans-v42-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/noto-sans-v42-latin-300.svg#NotoSans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v42-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4 'Noto Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 3rem 0;
    font-size: 1.7778em;
    line-height: 1.1;
    background-color: #92DBD6;
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 20px;
    width: fit-content;
}
h2 {
    font-size: 2em;
    line-height: 1.3em;
    margin-bottom: 2rem;
}
h3 {
    margin: 0 0 3rem;
    font-size: 2.5em;
    line-height: 1.1em;
}
h4 {
    font-size: 1.563em;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 1.75rem;
}
h3, h2, h1 {
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 3rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.625rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        display: flex;
        justify-content: center;
    }
    h1 {
        margin: 2rem auto;
        text-align: center;
        font-size: 1.625em;
    }
    h3 {
        font-size: 2em;
        margin-bottom: 2rem;
    }
    h2 {
        font-size: 1.625em;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
    h1 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.75em;
    }
    h2 {
        font-size: 1.375em;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
}