:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.eot');
  src: url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
    url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
    url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
    url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.eot');
  src: url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
    url('../fonts/poppins-v20-latin-700.woff') format('woff'),
    url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
    url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Poppins', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 520px;
  margin: 16px auto;
  border: 2px solid #1060A2;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 16px;
  font-size: 33px;
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
  color: #A2B2DB;
}

h1 strong {
  color: #557DBE;
  display: block;
  font-size: 1.4375em;
  line-height: 1;
}

h1 small {
  font-size: 22px;
}

h2 {
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

.background {
  background-color: #1060A2;
  padding: 16px;
  color: #fff;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #1060A2;
  padding: 0 8px 12px;
  gap: 8px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

span {
  white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@media all and (max-width:520px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  h1 {
    font-size: 24px;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}