@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #231F20;
  font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 468px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.8rem;
  text-align: justify;
  hyphens: auto;
}
h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75em;
  text-align: center;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1.294em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #7F7F7F;
  font-weight: normal;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  padding: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
article {
  padding: 0 1.5rem;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex p {
  width: 274px;
}
.flex > a {
  margin-top: 0.5rem;
}
figure {
  margin: 0 -0.75rem;
}
footer {
  padding: 0 1.5rem 0.75rem;
}
footer p {
  font-size: 0.875em;
  line-height: 1.1;
}
footer p:last-of-type {
  position: absolute;
  bottom: 0.75rem;
  right: 1.5rem;
  color: #01A9EA;
}
footer p img {
  vertical-align: -4px;
}
@media only screen and (max-width:467px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  header, article, footer {
    padding-inline: 1rem;
  }
  header {
    justify-content: center;
  }
  p {
    text-align: left;
  }
  span {
    display: inline-block;
  }
  h2 {
    letter-spacing: 0;
    font-size: 1.125em;
  }
  .flex {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.8rem;
  }
  .flex p {
    width: 100%;
  }
  footer p {
    text-align: center;
    position: static !important;
  }
}