﻿@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: 810px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 20px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 1.25;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  hyphens: auto;
  text-align: justify;
}

p {
  margin: 0 0 24px;
  padding: 0;
}

h1 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 1.3;
  padding: 8px 0;
  border-top: 1px solid #6C6C6C;
  border-bottom: 1px solid #6C6C6C;
  font-weight: 400;
}

h1 strong {
  display: block;
  font-size: 30px;
  font-weight: 400;
  color: #3237DE;
}

.text>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text>div ul {
  flex: 1 1 0;
}

h2 {
  margin: 24px 0 8px;
  font-size: 16px;
  line-height: 1.25;
  padding: 8px 0;
  border-top: 1px solid #6C6C6C;
  color: #3237DE;
}

.color {
  color: #0F4080;
  text-decoration: underline;
}

h3 {
  font-size: 16px;
  line-height: 1.25;
  width: 200px;
  color: #3237DE;
  margin-bottom: 24px;
}

h4 {
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.25;
  color: #3237DE;
}

a {
  color: #200E00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: "\2022";
  color: #200E00;
  float: left;
  margin-top: -2px;
  font-size: 25px;
  text-indent: -20px;
  line-height: 1;
}

.list li:before {
  content: "\2010";
  margin-top: -6px;
}

.link {
  color: #00F;
  font-weight: 700;
  text-decoration: underline;
}

@media all and (max-width:810px) {
  #wrapper {
    text-align: left;
    padding: 16px;
    border: none;
    margin: 0;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }

  p {
    margin: 0 0 16px;
  }

  h1 {
    margin-top: 0;
  }

  ul {
    margin: 0 0 16px;
  }

  h2 {
    margin: 16px 0 8px;
  }

  h3 {
    margin-bottom: 16px;
  }
}

@media all and (max-width:767px) {
  .text>div {
    flex-direction: column;
    align-items: flex-start;
  }
}