﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #231f20;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

#wrapper {
  max-width: 750px;
  margin: 16px auto;
  border: 1px solid #000;
  padding: 8px 18px 18px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

header {
  padding: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.font {
  font-size: 11px;
}

figure {
  margin: 10px 0;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 16px 0;
  gap: 10px;
  padding-right: 120px;
}

footer {
  position: absolute;
  right: 38px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

footer strong {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
}

p {
  margin: 0 0 10px;
}

h1 {
  padding-left: 18px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  width: 49%;
}

h1:before {
  content: '\2022';
  float: left;
  font-size: 13px;
  text-indent: -18px;
  margin-top: -1px;
}

h1 span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

h2 {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

h3 {
  margin: 16px 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

a {
  color: #231f20;
  text-decoration: none;
}

ul {
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: '\2212';
  float: left;
  font-size: 16px;
  text-indent: -20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media all and (max-width: 750px) {
  #wrapper {
    margin: 0;
    border: none;
    hyphens: auto;
    text-wrap: pretty;
  }

  footer {
    right: 18px;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width: 668px) {
  .flex {
    padding-right: 0;
  }

  footer {
    position: static;
    margin: 16px 0 0;
  }

  h1 {
    width: 100%;
  }
}

@media all and (max-width: 374px) {
  header {
    flex-direction: column;
    gap: 16px;
  }
}