.landing-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;

  color: white;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: 'Times New Roman', Times, serif;
}

.landing-textbox * {
  margin-top: 1.25rem;
}

.page-title {
  font-size: 12vw;
}

.page-subtitle {
  font-size: 6vw;
  font-weight: lighter;
}

.content-container {
  width: 100%;

  background-color: var(--highlight);

  padding: 25px;
  text-align: center;
}

.description-container .description-item {
  margin: 45px 15px;
}

.description-item h3 {
  font-size: x-large;
  font-weight: bold;
}

.description-item p {
  margin-top: 10px;

  font-size: large;
  font-weight: lighter;
}

.about-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.about-container {
  padding: 0 25px;

  text-align: center;

  color: white;
}

.about-container h3 {
  font-size: xx-large;
  padding-bottom: 20px;
}

.about-container p {
  font-size: large;
  padding-top: 15px;
}

/*
Non-mobile screens
*/
@media only screen and (min-width: 400px) {
  .page-title {
    font-size: 8vw;
  }
  
  .page-subtitle {
    font-size: 2.5vw;
    padding-bottom: 15px;
  }

  .description-container {
    width: 100%;

    margin: 50px 0;
    padding: 0;

    display: flex;
    flex-direction: row;
  }

  .description-item h3 {
    font-size: xx-large;
  }
  
  .description-item p {
    font-size: x-large;
  }
  
  .about-container {
    padding: 0 10%;
  }
}

/*
Desktop screens
*/
@media only screen and (min-width: 1200px) {
  .page-title {
    font-size: 6vw;
  }
  
  .page-subtitle {
    font-size: 1.75vw;
    padding-bottom: 15px;
  }

  .description-container {
    width: 100%;

    margin: 50px 0;
    padding: 0 6%;

    display: flex;
    flex-direction: row;
  }

  .description-item h3 {
    font-size: xx-large;
  }
  
  .description-item p {
    font-size: x-large;
  }
  
  button {
    font-size: 1.5vw;
  }
}