@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot');
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 1rem;
}

body {
  color: #231f20;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}

#wrapper {
  max-width: 560px;
  margin: 16px auto;
  border: 2px solid #231f20;
  background-color: #fff;
  position: relative;
}

article {
  padding: 10px 10px 0;
}

footer {
  padding: 0 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  flex-direction: row-reverse;
  align-items: flex-end;
}

footer p {
  font-size: 17px;
  line-height: 1.4;
}

:is(.color, footer p strong) {
  color: #dd4c4f !important;
}

p:not(footer p) {
  margin: 0 0 8px;
  text-align: justify;
  hyphens: auto;
}

strong {
  font-weight: 700;
}

h1 {
  padding: 10px;
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  background: #dd4c4f url(../images/background.jpg) left center no-repeat;
  color: #fff;
}

h1 small {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #0378b4;
}

ul {
  padding: 0 0 10px;
  list-style: none;
}

ul li {
  padding-left: 10px;
}

li:before {
  content: '\2022';
  color: #dd4c4f;
  float: left;
  font-size: 16px;
  text-indent: -10px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #231f20;
  text-decoration: none;
}

@media all and (max-width: 560px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  header img {
    width: 100%;
  }

  article {
    padding: 16px 16px 0;
  }

  footer {
    padding: 0 16px 16px;
    flex-direction: column;
    align-items: center;
  }

  footer p {
    text-align: center !important;
  }

  h1 {
    padding: 16px;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  p {
    text-align: left !important;
  }

  :is(a, span) {
    white-space: nowrap;
  }

  br:not(footer br) {
    display: none;
  }
}