html, body {
  margin: 0;
  padding: 0;
}

.site-wp {
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.title-container {
  margin: 60px auto 0;
  width: 90%;
  max-width: 600px;
  text-align: center;
}
.title-container img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.desc-container {
  margin: 20px auto 0;
  width: 90%;
  max-width: 600px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.description {
  text-align: center;
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.links a {
  display: block;
  padding: 8px 20px;
  border-radius: 6px;
  margin: 9px;
  background: #2461ac;
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  min-width: 300px;
  text-align: center;
}
.links a:hover {
  background: #4587d8;
}
.links a:active, .links a:focus {
  background: #144a8c;
}