* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  background-color: #d34a47;
}

.section {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section__content {
  text-align: center;
}
.section__content img {
  max-width: 180px;
  margin-bottom: 30px;
}
.section__content h1 {
  color: #fff;
  margin-bottom: 30px;
}
.section__content i {
  font-size: 72px;
  line-height: 1;
  color: #fff;
}

footer {
  margin-top: auto;
}