﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 475px;
  margin: 12px auto;
  border: 3px solid #034D9C;
  padding: 16px 20px 6px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  color: #231f20;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  margin: 0;
  padding: 0;
}

article {
  margin: 0;
  padding: 0;
}

article .contact {
  margin-top: 16px;
}

article>p:nth-of-type(1) {
  text-align: justify;
}

footer {
  position: absolute;
  bottom: 16px;
  right: 16px;
}


p {
  margin: 0 0 6px;
  padding: 0;
}

h1 {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  color: #034D9C;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #231f20;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: "\2022";
  color: #231f20;
  float: left;
  margin-left: 0;
  font-size: 25px;
  text-indent: -20px;
}

@media all and (max-width:475px) {
  #wrapper {
    margin: 0;
    padding: 16px;
    border: none;
    hyphens: auto;
  }

  h1 br {
    display: none;
  }

  article>p:nth-of-type(1) {
    text-align: left;
  }
}

@media all and (max-width:440px) {
  footer {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }
}