﻿@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: 910px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 70px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  color: #27272A;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  text-align: right;
}

article {
  margin: 18px 0;
  padding: 0;
}

footer {
  margin: 0;
  padding: 0;
  color: #45B0E1;
  font-size: 14px;
  line-height: 1.2;
}


p {
  margin: 0 0 18px;
  padding: 0;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 24px 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

h1 span {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

h1 strong {
  font-size: 26px;
  color: #45B0E1;
}

h1+p {
  margin-bottom: 32px;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}



a {
  color: inherit;
  text-decoration: none;
}

a.link {
  color: #00f;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 25px;
}

li:before {
  content: "\2022";
  color: #27272A;
  float: left;
  line-height: 1;
  margin-top: -3px;
  font-size: 25px;
  text-indent: -25px;
  font-family: Arial, Helvetica, sans-serif;
}

@media all and (max-width:900px) {
  #wrapper {
    border: none;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}

@media all and (max-width:767px) {
  #wrapper {
    padding: 16px;
  }
}