* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-width: 20rem;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background-color: #000000;
}

.splash {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  min-height: 100vh;
  overflow: hidden;
  gap: 3rem;
  padding: 6rem 5vw 5rem;
  @media all and (min-width: 73.75rem) {
    gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 4.375rem 12.5rem 3.75rem 12.5rem;
  }
}

.splash__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.splash__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.splash__top {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  @media all and (min-width: 73.75rem) {
    gap: 1.625rem;
    flex-direction: column;
  }
}

.splash__header {
  display: flex;
  justify-content: flex-start;
  @media all and (min-width: 73.75rem) {
    justify-content: flex-end;
  }
}

.email {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.email:hover {
  text-decoration: underline;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  text-align: left;
  @media all and (min-width: 73.75rem) {
    text-align: left;
  }
}

.content__headline {
  font-size: clamp(1.75rem, 1.285rem + 2.33vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
  @media all and (min-width: 73.75rem) {
    max-width: 46.3125rem;
  }
}

.content__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 100%;
  @media all and (min-width: 73.75rem) {
    max-width: 44.1875rem;
  }
}

.content__links {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  @media all and (min-width: 73.75rem) {
    gap: 3.125rem;
  }
}

.content__links a {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  white-space: nowrap;
}

.content__links a:hover {
  opacity: 0.8;
}

.splash__footer {
  display: flex;
  justify-content: flex-start;
  @media all and (min-width: 73.75rem) {
    justify-content: flex-end;
  }
}

.logo {
  width: 100%;
  max-width: 15rem;
  height: auto;
  @media all and (min-width: 73.75rem) {
    width: 65%;
    max-width: 78.1875rem;
  }
}
