@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 300 1.5em/1.3em 'Montserrat', Arial, sans-serif;
  text-align: center;
}
strong {
  font-weight: 500;
}
#wrapper {
  position: relative;
  max-width: 450px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 4px #CFC2A9;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0 -1rem 0.5rem;
  font-size: 1.4em;
  line-height: 1.1em;
  padding: 0.5rem 1rem;
  background: #6079A0;
  color: #fff;
  font-weight: 700;
}
h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: 700;
}
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;
}
header {
  padding: 1rem 1rem 0.5rem;
}
article {
  padding: 0 1rem;
}
footer {
  font-weight: 400;
  padding: 1rem 1rem 0.5rem;
  background: #CFC2A9;
}
@media only screen and (max-width:449px) {
  body {
    font-size: 1.125em;
  }
  #wrapper {
    border: none;
    margin: 0 auto;
  }
}