
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#808080;
   font-family:'Roboto', Helvetica, Arial, sans-serif;
   font-size:0.938em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:622px;
   min-width: 250px;
   margin: 1rem auto;
   border:solid 1px #808080;
   background:#fff;
   overflow:hidden;
   padding:0rem;
}
a {
   color:#0563C1;
   text-decoration:none;
}
p {
   padding-bottom:1rem;
   text-align: justify;
}
h1 {
   margin: 1.5rem 0rem 2.5rem;
   font-size:1.8em;
   font-weight: normal;
   text-align: center;
   line-height:1.1em;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1.15em;
   line-height:1.2em;
   margin-bottom:0.5rem;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}
ul {
  padding: 0rem 0rem 1rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.5em;
  position: relative;
  font-family:Helvetica, Arial, sans-serif;
  float: left;
  top: 0px;
  margin-left: -1rem;
}

header {
  padding:2.5rem 0.625rem 0rem;
  text-align: center;
}

article {
  padding:1rem 0.625rem 1rem;
}
article h2{
   font-style: italic;
}
footer {
   border-top:solid 1px #D9D9D9;
  padding:1.5rem 0.625rem 0.5rem;
}
footer aside{
   float: left;
}
footer aside:last-of-type{
   float: right;
   margin-right: 2rem;
}
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:622px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   body{
      font-size: 0.875em;
   }
   footer aside,
   footer aside:last-of-type{
      float: none;
      margin-right: 0;
   }
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
/* Tin developer */