@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 560px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 1rem 1rem 0;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0;
  font: 400 2em/1.3 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
}
h1:after, h1:before {
  content: "";
  width: 8.5rem;
  border-bottom: 2px solid #000;
  display: inline-block;
  margin-left: 0.5rem;
}
h1:before {
  margin: 0 0.5rem 0 0;
}
h1, h1 + p, footer p {
  text-align: center;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.5rem;
  list-style: none;
}
li {
  padding-left: 0.875rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -0.875rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.flex ul {
  padding: 0;
}
@media only screen and (max-width:559px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    border-radius: 0;
    padding: 1rem;
  }
  h1:after, h1:before {
    display: none;
  }
}