@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #3C729D;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 700px;
   border: solid 3px #3C729D;
   background: #fff;
}

p {
   padding-bottom: 1rem;
}

h1 {
   margin: 1rem 0 1.5rem;
   font-size: 1.892em;
   line-height: 1.1em;
   text-align: center;
}

h1 small {
   font-size: 0.7em;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

header {
   position: relative;
}

.web {
   position: absolute;
   left: 4%;
   width: 25%;
   height: 28%;
   top: 7%;
}

.qrcode {
   position: absolute;
   right: 2%;
   width: 15%;
   height: 31%;
   bottom: 5%;
}

article {
   padding: 0.5rem 1rem 0;
}

.box {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.box p {
   display: flex;
   gap: 1rem;
   align-items: center;
}

p.money {
   padding-left: 0.5rem;
}

footer p {
   background: #3C729D;
   padding: 0.3rem 1rem;
   color: #fff;
}

footer img {
   vertical-align: bottom;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:699px) {
   #wrapper {
      border: none;
      margin: 0 auto;
      hyphens: auto;
   }

   p {
      text-align: left;
   }

   br {
      display: none;
   }

   p :is(span, a) {
      display: inline-block;
   }

   .hide_m {
      display: none;
   }

}
