html,
body,
.content-wrapper,
.content {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  font-family: 'Public Sans', sans-serif;
}
.content-wrapper {
  background: linear-gradient(
      to left top,
      #251030 0% /*bottom-right color*/,
      #7a1e32 50% /*middle color*/,
      #d42c33 100% /*top-left color*/
    ),
    linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1))
      /*"faked" black background make sure to add last or it will appear before the transparent/colored layer*/;
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title,
.contact-link {
  padding: 0 15px;
  text-align: center;
}
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 30px auto 50px;
}
.title {
  font-size: 2.5em;
}
.contact-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.5em;
}
.contact-link:hover,
.contact-link:focus {
  color: #ccc;
  transition: 0.3s;
}
.contact-link:last-of-type {
  margin-bottom: 30px;
}