h1 span {
  line-height: 100%;
  font-size: 18px;
  font-weight: 400;
  color: var(--off-black);
  display: block;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (min-width: 768px) {
  h1 span {
    font-size: 24px;
  }
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.text-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.button-container .button {
  margin-right: 24px;
}
.button-container .button:last-child {
  margin-right: 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: auto;
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-light);
  z-index: 1;
}
.hero-section .hero-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.welcome-section {
  text-align: center;
}

.parish-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}

.parish-section p {
  margin-bottom: 0;
}

.resources-section p {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .update-card {
    flex-direction: row;
  }
  .update-card img {
    width: 50%;
    max-width: 600px;
  }
  .parish-panel {
    padding: 50px;
  }
}
@media (min-width: 1024px) {
  .content {
    gap: 120px;
  }
}
@media (min-width: 1350px) {
  .hero-section {
    height: 500px;
  }
}/*# sourceMappingURL=home.css.map */