@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.5em "Open Sans", sans-serif;
   color: #333;
   background: #F7F7F7;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 800px;
   background: #F7F7F7;
}

p {
   padding-bottom: 1rem;
}

h1 {
   margin: 1rem 0rem 0.5rem;
   font-size: 1.892em;
   line-height: 1.1em;
   font-weight: 600;
}

h1 small {
   font-size: 0.7em;
}

.gray {
   color: #6E6E6E;
   padding-bottom: 1.5rem;
}

.gray i {
   font-size: 0.938em;
}

h2 {
   font-size: 1.6em;
   line-height: 1.3;
   padding-bottom: 1rem;
   font-weight: 600;
}

h3 {
   font-size: 1em;
   line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0rem 0rem 1rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 30px;
}

ul li:before {
   content: "\2022";
   font-size: 1.5em;
   float: left;
   margin: 0 0 0 -20px;
}

.normal {
   font-weight: 400;
   text-decoration: underline;
}

a.button {
   background-color: #0055c9;
   color: #82e3ff;
   border-radius: 2px;
   font-weight: 600;
   border: 1px solid rgba(0, 0, 0, 0.1);
   padding: 10px 16px;
   line-height: 1.3333333;
   text-transform: uppercase;
}

a.button:hover {
   box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

section {
   background-color: white;
   border: 1px solid rgba(0, 0, 0, 0.1);
   margin-bottom: 16px;
   border-radius: 2px;
   padding: 1rem;
}

footer section {
   padding: 2rem 1rem 1rem;
   text-align: right;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:799px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }
}
