@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?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 Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 510px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #ED1164;
  background-color: #fff;
  overflow: hidden;
  padding: 0.5rem 1rem;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  padding: 0.5rem 1rem 0.125rem;
  margin: -0.25rem 0 0.5rem -1rem;
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 1.95em;
  line-height: 1.1em;
  background: #ED1164;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
}
h1 span {
  font-weight: 400;
  font-size: 0.8em;
}
h1 small {
  font-size: 0.7em;
  display: block;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  color: #ED1164;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
@media only screen and (max-width:509px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
}