
@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:#000;
   font-family:'Roboto', Helvetica, Arial, sans-serif;
   font-size:0.938em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:515px;
   min-width: 250px;
   margin: 1rem auto;
   border:solid 2px #000;
   background:#fff;
   overflow:hidden;
   text-align: center;
   padding:0.5rem 1rem 0;
}
a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom:0.5rem;
}
h1 {
   margin: 0.25rem 0rem 0.5rem;
   font-size:1.5em;
   line-height:1.1em;
}

h1 span {
   font-size:0.7em;
}

header {
  padding: 0;
}

article {
  padding:1rem 0 0;
}
article p:last-of-type{
   font-size: 1.15em;
   line-height: 1.3;
}
footer {
   margin: 0 -1rem;
  padding: 0.375rem 1rem;
  background: #F04740;
  color: #FFF;
}
footer a{
   color: #FFF;
}

.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:515px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
}