﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans: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: 910px;
  margin: 12px auto;
  border: 1px solid #000;
  padding: 85px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #200E00;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}

article {
  margin: 16px 0 30px;
}

p {
  margin: 0 0 16px;
}

h1 {
  margin: 20px 0;
  font-size: 25px;
  text-align: center;
  font-weight: 400;
}

h2 {
  margin: 16px 0 6px;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  text-decoration: underline;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #200E00;
  text-decoration: none;
}

.link {
  color: #00f;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 0 24px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 24px;
}

li:before {
  content: "\2022";
  color: #200E00;
  float: left;
  margin-top: -7px;
  font-size: 24px;
  text-indent: -24px;
  font-family: Arial, Helvetica, sans-serif;
}

@media all and (max-width:910px) {
  #wrapper {

    padding: 16px;
    border: none;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}