:root {
  font-size: 16px;
}

@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;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 460px;
  margin: 16px auto;
  border: 1px solid #000;
  padding: 16px;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

h1 strong {
  display: block;
  font-size: 18px;
}

h2 {
  margin: 4px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
}

h3 {
  color: #EE1D43;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-top: 26px;
}

h4 {
  color: #EE1D43;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  flex: 1 1 0;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  flex-direction: row-reverse;
  margin-bottom: 16px;
}

footer {
  position: relative;
}

footer figure {
  position: absolute;
  top: -50px;
  right: 10px;
}


.flex {
  display: flex;
  justify-content: space-between;
  margin: 4px 0 12px;
  flex-wrap: wrap;
  gap: 8px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 12px;
  margin: 3px 0;
}

ul li:before {
  content: "\2022";
  color: #000;
  float: left;
  margin-top: 0px;
  font-size: 24px;
  line-height: 1em;
  text-indent: -12px;
  font-family: Arial, Helvetica, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}


@media all and (max-width:460px) {
  #wrapper {
    margin: 0;
    padding: 16px;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  span {
    white-space: nowrap;
  }

  footer br {
    display: none;
  }

  footer figure {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}