.landing-content {
  position: relative;

  margin-top: 8em;
  padding: 0 2em;
}

.landing-content__title {
  font-size: 3.4rem;
}

.landing-content__description {
  text-align: justify;
}

/* Hide the spacing by default */
.landing-content__spacing {
  flex: 0;
}

.landing-content__links {
  margin-top: 3em;
  text-align: center;
}

.landing-content__link {
  display: block;
  font-size: medium;
}

.landing-content__link:not(:first-child) {
  margin-top: 0.75em;
}

/* Large desktop has landing-content on left side and no padding */
@media screen and (min-width: 1024px) {
  .landing-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  
    margin: 0;
    padding: 0 50px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .landing-content {
    padding: 0;
  }

  .landing-content__information {
    flex: 2;
    text-align: left;
  }

  .landing-content__links {
    margin: 0;
  }

  .landing-content__spacing {
    flex: 1;
  }

  .landing-content__spacing--small {
    flex: 0.5;
  }
}