@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: 16px;
}

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: 3px solid #e41c3c;
  padding: 16px;
  background-color: #fff;
  position: relative;
}

.logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  flex-direction: row-reverse;
  align-items: flex-end;
}

.logo p a {
  color: #e41c3c !important;
}

p:not(:last-of-type) {
  margin: 0 0 12px;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 12px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

h1 small {
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}

h2 {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
}

ul {
  margin: 0 0 12px;
  list-style: none;
}

ul li {
  padding-left: 16px;
}

li:before {
  content: url(../images/icon.jpg);
  float: left;
  font-size: 16px;
  text-indent: -16px;
  margin: -4px 0 0;
}

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;
  }

  .logo {
    margin: 16px 0 0;
  }

  :is(p, ul, h1) {
    hyphens: auto;
    text-wrap: pretty;
  }

  :is(a, span) {
    white-space: nowrap;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .logo {
    flex-direction: column;
    align-items: center;
  }

  .logo p {
    text-align: center;
  }
}