.frontpage-header {
  display: grid;
  grid-template-areas: "header";

  h1,
  p,
  a {
    color: white;
  }

  h1 {
    line-height: calc(65/70);
    font-size: 50px;;
    margin-block-end: 2rem;
    
  }
}
@media (min-width: 1440px) {
  .frontpage-header h1 {
    font-size: 90px;
    margin-block-end: 4rem;
  }
}

.frontpage-header-image {
  grid-area: header;
  width: 100%;
  height: 100%;
  object-fit: cover;

  @media (min-width: 1440px) {
    max-height: 100vh;
  }
}

.frontpage-header .content {
  grid-area: header;
  z-index: 1;
  align-self: flex-end;
  padding-block-start: 15rem;
  padding-block-end: 5rem;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
