.welcomeblurb {
  background:  var(--colorWhite);
  color: var(--colorBlack);
  text-align: center;
  padding: 1em 2em;
  font-family: var(--fontSerif);
  word-break: break-word;
}

.welcomeblurb a,
.welcomeblurb :is(h1, h2, h3, h4, h5, h6),
.welcomeblurb a:hover {
  color:var(--colorBlack);
}

.welcomeblurb-image {
  overflow: hidden;
  height: calc(100vh);
  position: relative;
  display: flex;
  align-items: center;
}

.welcomeblurb-image .welcomeblurb-image-text {
  padding: 16% 0 4em 0;
}

.welcomeblurb-image-picture {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.welcomeblurb-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  animation: welcome 4s linear 1s 1 backwards;
}

@keyframes welcome {
  0% { transform: scale(1.2); }
  100%{ transform: scale(1.0); }
}

.welcomeblurb-image .welcomeblurb-image-text,
.welcomeblurb-image .welcomeblurb-image-text a,
.welcomeblurb-image :is(h1, h2, h3, h4, h5, h6) {
  color: var(--colorWhite);
}

.welcomeblurb-image .welcomeblurb-image-text.black,
.welcomeblurb-image .welcomeblurb-image-text.black a,
.welcomeblurb-image .welcomeblurb-image-text.black :is(h1, h2, h3, h4, h5, h6) {
  color: var(--colorBlack);
}
.welcomeblurb-image :is(h1, h2, h3, h4, h5, h6) {
  font-weight: var(--fontWeightExtraBold);
}

@media screen and (min-width: 1024px) {
  .welcomeblurb-image .welcomeblurb-image-text {
    width: 100%;
    padding: 0;
  }
}