:root {
  --black: #19161b;
  --white: #f2f2f1;
  --font-fam: "Montserrat", sans-serif;
  --device-small: 576px;
  --device-tablet: 768px;
  --device-large: 992px;
  --device-xl: 1200px;
  font-size: 8px;
}

html,
body {
  background: var(--black);
  height: 100%;
  margin: 0;
}
main,
main * {
  font-family: var(--font-fam);
}
br.r-br-sm {
  display: inline;
}
br.r-br-md {
  display: none;
}

@media (min-width: 768px) {
  :root {
    font-size: 12px;
  }
  br.r-br-sm {
    display: none;
  }
  br.r-br-md {
    display: inline;
  }
}

@media (min-width: 992px) {
  br.r-br-sm {
    display: none;
  }
  br.r-br-md {
    display: none;
  }
}


.splash {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.splash-body {
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--white);
  color: var(--black);

  border-width: 5vw;
  border-style: solid;
  border-color: var(--black);

  flex: 1;
  padding: 10vh 5vw 6vh;
}


.splash h1,
.splash h2 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  margin: .67em 0 .5em;
  text-align: center;
}

.splash h1 {
  font-size: 5rem;
}

.splash h2 {
  font-size: 3rem;
  /* line-height: 2.5; */
}

.splash p {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  margin: 0 0 1.5em;
  text-align: center;
}


figure.logo {
  background: var(--black);
  border-radius: 50%;
  max-inline-size: 100%;
  margin: 0 auto;
  line-height: 0;
  font-size: 3rem;
  max-width: 7.6em;
}
figure.logo img {
  max-inline-size: 100%;
}


.newsletter-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-cta input,
.newsletter-cta button {
  font-size: 2rem;
  border: 0;
  margin: 0;
  padding: .8em;
}

.newsletter-cta input {
  font-weight: 600;
  background: #fff;
  margin-bottom: 1.5em;
}

.newsletter-cta button {
  background: var(--black);
  color: var(--white);
  font-weight: 400;
  width: 50%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

#newsletter-response {
  opacity: .6;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .newsletter-cta {
    flex-direction: row;
    justify-content: center;
    max-width: 50%;
    margin: 0 auto;
  }
  .newsletter-cta input {
    margin: 0;
  }
}

.pulse {
  transition: 0.25s;
}
.pulse:hover,
.pulse:active {
  animation: pulse 1s;
  box-shadow: 0 0 0 1em transparent;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--black); }
}