.main-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertical centring */
  align-items: center;
  /* Horizontal centring */
  text-align: center;
  color: white;
  padding: 2rem;
  box-sizing: border-box;
}

/* Blurred background image behind content */
.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/HEADER_IMAGE_BEFOUNDSTUDIO_UNIBUILDERS_BACKDROP.jpg");
  background-size: cover;
  background-position: center;
  /* filter: blur(7px) brightness(1.1); */
  z-index: 0;
}

/* Ensure content layers above blur */
.main-header>* {
  position: relative;
  z-index: 1;
}

/* Responsive logo image */
.main-header img {
  width: 550px;
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
}

/* Header title */
.main-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Subheading */
.main-header p {
  font-size: 1.25rem;
  max-width: 90%;
  line-height: 1.4;
}

.main-header a {
  text-align: center;
  color:white;
  text-decoration: none;
  font-size: xx-large;
  font-style: italic;
  font-weight: 900;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 600px) {

  .main-header h1 {
    font-size: 1.8rem;
  }

  .main-header p {
    font-size: 1rem;
  }
}