@charset "utf-8";

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   max-width: 510px;
   margin: 1rem auto;
   border: 1px solid #EE2D2E;
   background: #FFF;
   overflow: hidden;
}

p {
   padding-bottom: 0.5rem;
   text-align: justify;
}

h1 {
   color: #EE2D2E;
   margin: -0.5rem 0 0.3rem;
   font-size: 2em;
   line-height: 1.3;
   text-align: center;
}

h1 span {
   font-size: 1.375rem;
   font-weight: normal;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
   color: #EE2D2E;
}

ul {
   padding: 0 0 0.5rem;
   list-style: none;
}

li {
   padding-left: 1rem;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: -1px 0 0 -1rem;
}

header {
   padding: 1rem 1rem 0.6rem;
   display: flex;
   justify-content: center;
}

article {
   padding: 0 1rem;
}

footer {
   padding: 0.5rem 1rem;
   background: #EE2D2E;
}

footer p {
   color: #fff;
   padding-bottom: 0.3rem;
   text-align: center;
}

img {
   max-width: 100%;
   height: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
   white-space: nowrap;
}

@media only screen and (max-width:509px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }
   h1{
    font-size: 1.6em;
   }
   p span{
      display: inline-block;
   }
}
