﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 781px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 50px 80px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  margin: 0 0 0 22px;
}

footer {
  margin: 16px 0 0;
}

p {
  margin: 0 0 16px;
  padding: 0;
  text-align: justify;
  hyphens: auto;
}

h1 {
  margin: 16px 0 16px 0;
  padding: 0;
  font-size: 33px;
  line-height: 1.25;
  color: #FFEC00;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

h1 strong {
  background-color: #E4007C;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
}

h2 span {
  background-color: #009EE2;
  color: #fff;
}

h3 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.25;
}

a {
  color: #200E00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 24px;
}

li:before {
  content: "\2022";
  color: #200E00;
  float: left;
  margin-top: -1px;
  font-size: 25px;
  text-indent: -24px;
}

footer a {
  color: #0562C1;
  text-decoration: underline;
}

@media all and (max-width:800px) {
  #wrapper {
    border: none;
    padding: 1rem;
  }
  
  p {
	  text-align: left;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}

@media all and (max-width:767px) {
  header {
    margin: 0 0 0 0;
  }
}