﻿@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%;
  vertical-align: bottom;
}

#wrapper {
  position: relative;
  max-width: 440px;
  margin: 12px auto;
  border: 2px solid #000;
  padding: 0;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  padding: 10px 10px 0;
}

article {
  padding: 0 10px 12px;
}

article > img{
  position: absolute;
  left: 10px;
  bottom: 6px;
}

footer {
  text-align: right;
}


p {
  margin: 0 0 0;
  padding: 0;
}

h1,
h4 {
  margin: 12px 0 16px;
  padding: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: #eb1f2c;
  display: block;
}

h1 strong,
h4 strong {
  font-size: 25px;
}

h1 em,
h4 em {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

h2 {
  font-size: 40px;
  line-height: 1;
  color: #285eab;
}

h3 {
  margin: 3px 0;
  font-size: 20px;
  line-height: 1.2;
}

h4 small{
  display: block;
  font-size: 18px;
  margin: 5px 0;
}

h4+p {
  padding-top: 6px;
}

a {
  color: #285eab;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: "\2022";
  color: #200E00;
  float: left;
  margin-left: 0;
  font-size: 25px;
  text-indent: -20px;
}

span {
  white-space: nowrap;
  display: block;
}

@media all and (max-width:440px) {
  #wrapper {

    padding: 16px;
    border: none;
  }

  h1 br{
    display: block;
  }

  h1 strong, h4 strong{
    font-size: 23px;
  }

  br {
    display: none;
  }

  article > img{
    position: static;
  }

  h4+p{
    margin-bottom: 7px;
  }

  footer br {
    display: inline;
  }
}