html, body {
  height: 100%;
  margin: 0;
}

body {
  color: rgb(35,35,43);
  font-family: "pt-sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background: rgb(245,245,245);
  background: -moz-linear-gradient(top, rgb(245,245,245) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(245,245,245) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(245,245,245)), color-stop(20%, rgb(255,255,255)), color-stop(80%, rgb(255,255,255)), color-stop(100%, rgb(245,245,245)));
  background: -webkit-linear-gradient(top, rgb(245,245,245) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(245,245,245) 100%);
  background: -o-linear-gradient(top, rgb(245,245,245) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(245,245,245) 100%);
  background: -ms-linear-gradient(top, rgb(245,245,245) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(245,245,245) 100%);
  background: linear-gradient(to bottom, rgb(245,245,245) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(245,245,245) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f5f5f5', GradientType=0 );
}

a {
  color: rgb(20,105,165);
  text-decoration: none;
  -moz-transition: 0.15s;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

a:hover {
  color: rgb(0,180,200);
}

.wrapper {
  margin: 0px auto;
  padding-top: 50px;
  max-width: 700px;
  min-height: calc(100vh - 50px - 70px);
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

p {
  font-size: 1.8rem;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: -1px;
}

.icons {
  font-size: 3rem;
  margin-top: 30px;
}

.icons a {
  color: rgb(204,204,204);
  -moz-transition: 0.15s;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  margin-right: 10px;
}

.icons a:hover {
  color: rgb(180,190,200);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: rgba(180, 190, 200, 0.1);
}

footer .centered {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * Media Queries
 */
@media(max-width: 769px) {
 .wrapper {
   padding: 0 50px;
   padding-top: 50px;
 }
 .icons {
   font-size: 4rem;
 }
}
