﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #62a7db;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

#wrapper {
  max-width: 730px;
  margin: 16px auto;
  border: 1px solid #62a7db;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

header {
  padding: 32px 64px;
  background: #62a7db;
}

.title {
  padding: 0 0 0 114px;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  margin: -8px 0 0;
}

article {
  padding: 20px 64px 16px;
}

footer {
  padding: 0 64px 48px;
}

footer div {
  position: absolute;
  right: 0;
  bottom: 150px;
}

p:not(:last-of-type) {
  margin: 0 0 16px;
}

h1 {
  margin: 16px 0;
  font-size: 39px;
  line-height: 44px;
  font-weight: 700;
}

h1 span {
  font-size: 16px;
  line-height: 20px;
}

h1 small {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin: 10px 0;
}

h2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

h3 {
  margin: 16px 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

a {
  color: #62a7db;
  text-decoration: none;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 12px;
}

li:before {
  content: '\2022';
  float: left;
  font-size: 20px;
  text-indent: -12px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media all and (max-width: 730px) {
  #wrapper {
    margin: 0;
    border: none;
    hyphens: auto;
  }

  header {
    padding: 16px;
  }

  article {
    padding: 16px;
  }

  footer {
    padding: 0 16px 256px;
  }

  footer div {
    bottom: 0;
  }

  span {
    white-space: nowrap;
  }

  br:not(header br) {
    display: none;
  }
}

@media all and (max-width: 640px) {
  .title {
    padding: 0;
    margin: 16px 0 0;
  }
}