﻿@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: 860px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 50px 60px;
  overflow: hidden;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  margin: 0px 0 32px 23px;
  text-align: right;
}

footer {
  margin: 16px 0 0;
}

p {
  margin: 0 0 16px;
  padding: 0;
  text-align: justify;
}

h1 {
  margin: 16px 0 16px 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #D81181;
  text-decoration: underline;
}

h1 strong {
  background-color: #E4007C;
}

h2 {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.3;
}

h2 span {
  background-color: #009EE2;
  color: #fff;
}

h3 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.25;
}

a {
  color: #200E00;
  text-decoration: none;
  white-space: nowrap;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 46px;
  text-align: justify;
}

li:before {
  content: "\2022";
  color: #200E00;
  float: left;
  margin-top: -5px;
  font-size: 25px;
  text-indent: -24px;
  line-height: 1;
}

footer a {
  color: #0562C1;
  text-decoration: underline;
}

.link {
  color: #800381;
  text-decoration: underline;
}

@media all and (max-width:860px) {
  #wrapper {
    border: none;
  }

  p,
  ul li {
    text-align: left;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}

@media all and (max-width:767px) {

  #wrapper {
    padding: 1rem;
  }

  ul li {
    padding-left: 24px;
  }

}