.page-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: var(--spacing-lg);
}

.name-header {
  flex-basis: 40%;
  display: grid;
  place-content: center;
  text-align: center;
  margin: var(--spacing-xl);
  padding: var(--spacing-lg);
  border-radius: var(--corner-lg);
  background-color: var(--color-background);
}
.name-header h1 {
  font-size: 6rem;
}
@media (max-width: 34.375rem) {
  .name-header h1 {
    font-size: 4.5rem;
  }
}
.name-header h2 {
  font-size: 3rem;
}
@media (max-width: 34.375rem) {
  .name-header h2 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

#short-header {
  display: none;
}
@media (max-width: 34.375rem) {
  #short-header {
    display: block;
  }
}

@media (max-width: 34.375rem) {
  #long-header {
    display: none;
  }
}

.other-marcs {
  flex-basis: 60%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--color-text-on-page-background);
}
.other-marcs a {
  font-size: 1.125rem;
  color: var(--color-link-inline-on-page-background);
  margin-bottom: 8px;
}
.other-marcs a:hover {
  color: var(--color-link-inline-on-page-background-hover);
}
.other-marcs h3 {
  font-size: 1.5rem;
  padding: 1rem;
}

footer {
  flex-basis: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-on-page-background);
}

.footer-credits-wrapper {
  text-align: center;
}

.footer-primary {
  font-size: 0.8rem;
}

.footer-secondary {
  font-size: 0.7rem;
}

.footer-corner-icon {
  width: 24px;
  height: 24px;
}
.footer-corner-icon a {
  color: var(--color-text-on-page-background);
}

/*# sourceMappingURL=homepage.css.map */
