@charset "utf-8";

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   color: #000;
   font: 1em/1.3em Verdana, Arial, sans-serif;
}

#wrapper {
   position: relative;
   max-width: 850px;
   margin: 1rem auto;
   border: solid 2px #00AEEF;
   background-color: #fff;
   overflow: hidden;
   padding: 1.375rem 2.25rem 0.5rem;
}

p {
   padding-bottom: 0.5rem;
   font-size: 0.9em;
   line-height: 1.3;
}

h1 {
   margin: -120px 0 11rem;
   font-size: 1.75em;
   line-height: 1;
   position: relative;
   color: #fff;
}
h1 span {
   display: block;
   width: fit-content;
   background: #7E2B91;
   padding: 0.375rem 0.5rem 0.375rem 1rem;
}

h1 small {
   font-size: 0.4em;
   background: #7E2B91;
   display: block;
   width: fit-content;
   padding: 0 1rem 0.3rem;
}

h2 {
   font-size: 1.05em;
   line-height: 1.2em;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

img {
   max-width: 100%;
   height: auto;
}

ul {
   padding: 0 0 0.75rem;
   list-style: none;
}

li {
   padding-left: 1rem;
}

ul li:before {
   content: "\2012";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -1rem;
}

.logo {
   margin-bottom: 0.5rem;
}

section {
   padding-left: 1rem;
}
header img {
   display: block;
}
.qr {
   padding: 0 0.125rem 2.5rem 1.375rem;
   background: url('../images/bg2.jpg') no-repeat bottom left;
}

footer {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2rem;
   position: absolute;
   right: 2.5rem;
   bottom: 2rem;
}

@media only screen and (max-width: 849px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }
   .logo {
      display: flex;
      justify-content: center;
   }
   h1 {
      font-size: 2em;
      line-height: 1.2em;
      hyphens: auto;
      font-size: 1.7em;
      margin: 1rem 0 2rem;
   }
   h1, section {
      padding-left: 0;
   }
   footer {
      flex-direction: row;
      position: static;
      justify-content: center;
      padding: 0.5rem 0 0;
   }
   p :is(span, a) {
      display: inline-block;
   }
}
@media only screen and (max-width: 780px) {
   #wrapper {
      padding: 1rem 2rem;
   }
}
@media only screen and (max-width: 480px) {
   #wrapper {
      padding: 1rem;
   }
   h1 {
      font-size: 1.5em;
   }
   footer {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
   }
}
@media only screen and (max-width: 380px) {
   h1 {
      font-size: 1.4em;
   }
   h1 span {
      padding-left: 0.5rem;
   }
   h1 small {
      padding: 0 0.5rem 0.25rem;
   }
}