@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 603px;
  margin: 1rem auto;
  border: solid 2px #116EB5;
  background-color: #fff;
  overflow: hidden;
}

h2, p strong, footer a {
  color: #116EB5;
}

p {
  padding-bottom: 0rem;
}

h1 {
  margin: 0rem 0rem 0rem;
  font-size: 1em;
  line-height: 1.3em;
  padding-left: 1.6rem;
  font-weight: normal;
}

h1:before {
  content: "•";
  display: inline-block;
  font-size: 1.8em;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -1.2rem;
  color: #EE1D23;
}

h1 span {
  color: #EE1D23;
  font-weight: 700;
}

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;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 0.2rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1.1rem;
}

ul li:before {
  content: "_";
  display: inline-block;
  font-size: 1.20em;
  position: relative;
  float: left;
  top: -6px;
  margin-left: -1.1rem;
}

header {
  padding: 0rem 0rem 0rem;
  position: relative;
}

header a {
  position: absolute;
  top: 13%;
  right: 2%;
  width: 25%;
  height: 79%;
}

article {
  padding: 0rem 1rem 0rem;
}

footer {
  padding: 0rem 1rem 0.4rem;
}


@media only screen and (max-width:602px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
  }
  

  p a {
    display: inline-block;
  }

  br {
    display: none;
  }

}

