@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('roboto-v30-latin-regular.eot');
  src: url('roboto-v30-latin-regular.eot@') format('embedded-opentype'), url('roboto-v30-latin-regular.woff2') format('woff2'), url('roboto-v30-latin-regular.woff') format('woff'), url('roboto-v30-latin-regular.ttf') format('truetype'), url('roboto-v30-latin-regular.svg') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('roboto-v30-latin-700.eot');
  src: url('roboto-v30-latin-700.eot@') format('embedded-opentype'), url('roboto-v30-latin-700.woff2') format('woff2'), url('roboto-v30-latin-700.woff') format('woff'), url('roboto-v30-latin-700.ttf') format('truetype'), url('roboto-v30-latin-700.svg') format('svg');
}

:root {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.2;
  font-size: 16px;
  color: #231F20;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

#wrapper {
  margin: 1rem auto;
  border: 1px #231F20 solid;
  max-width: 655px;
  padding: 25px;
  background-color: #FFFFFF;
}

p {
  padding-bottom: 15px;
  text-align: justify;
  hyphens: auto;
}

h1 {
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 700;
}

h1 span {
  font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #231F20;
  text-decoration: none;
  white-space: nowrap;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

header {
  margin: 0 0 20px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

footer p {
  text-align: center;
  padding-bottom: 0;
  font-weight: 700;
}

@media only screen and (max-width:653px) {
  #wrapper {
    border: none;
    padding: 16px;
    margin: 0;
  }

  :is(p, h1) {
    hyphens: auto;
    text-wrap: pretty;
  }

  p {
    text-align: left;
  }

  :is(a, span) {
    white-space: nowrap;
  }
}