@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

:root {
   font-size: 16px;
}

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

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 770px;
   border: solid 1px #000;
   background: #fff;
   padding: 5rem;
}

.big {
   font-size: 1.188em;
   line-height: 1.3;
}

p {
   padding-bottom: 1rem;
}

h1 {
   margin: 0 0 1rem;
   font-size: 1.552em;
   line-height: 1.1em;
   text-align: center;
}

h1 small {
   font-size: 0.7em;
}

h2 {
   font-family: "Roboto Slab", serif;
   font-size: 1.95em;
   text-align: right;
   line-height: 1.3;
}

h3 {
   font-size: 1em;
   line-height: 1.3;
}

header p span {
   letter-spacing: 2px;
   display: block;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0 0 1rem;
   list-style: none;
}

li {
   padding: 0 0 0 25px;
}

ul li:before {
   content: "\2022";
   font-size: 0.9em;
   margin: 0 0 0 -25px;
   float: left;
}

header {
   padding: 0 0 4rem;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   align-items: end;
}

header :is(p, h2) {
   padding-right: 2rem;
}

header p {
   text-align: right;
   font-size: 0.750em;
   line-height: 1.3;
   padding-bottom: 0.3rem;
}

hr {
   border: none;
   margin-left: -13.5%;
   border-bottom: 1px solid #000;
}

.logo {
   margin-bottom: -2rem;
}

header p img {
   vertical-align: bottom;
}

img {
   max-width: 100%;
   height: auto;

}

@media only screen and (max-width:769px) {
   #wrapper {
      border: none;
      margin: 0 auto;
      padding: 1.5rem;
   }

   header :is(p, h2) {
      text-align: left;
   }

   .logo {
      margin-bottom: 1rem;
   }

   footer br {
      display: none;
   }

   header {
      padding-bottom: 1rem;
   }

   hr {
      margin: 0;
   }

   p :is(a, span) {
      display: inline-block;
   }
}
