#welcome-section {
  background: var(--white);

  padding-top: var(--navbar-height);
  min-height: calc(100vh - 2 * var(--navbar-height));

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#welcome-section h1 {
  margin-bottom: 40px;
}

#welcome-section img {
  width: 100%;
  max-width: 12.5em;
  height: auto;
  border-radius: 4px;
}

#welcome-section p {
  max-width: var(--max-page-width);
  padding: 0px 10px 0px 10px;
  margin-top: 40px;
}

@media (min-width: 720px) {
  #welcome-section {
    font-size: 110%;
  }
}

@media (min-width: 1080px) {
  #welcome-section {
    font-size: 120%;
  }
}

