*, *::before, *::after {
  box-sizing: border-box;
}

:root {
	--clr-primary: #282828;
	--clr-secondary: #FFB800;
  --clr-background: #ededed;
	--clr-link-hover: #e6a600;

  --ff-serif: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: var(--clr-primary);
	font-family: var(--ff-serif);
  font-weight: 400;
	background-color: var(--clr-background)
}

section {
  min-height: 100vh;
  width: 100%;
}

h1 {
  line-height: 2.5rem;
}

.splash {
  background-image:
    url('data:image/svg+xml,<svg width="1440" height="372" viewBox="0 0 1440 372" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0h1440v74.7L1211.92 372 0 137.369z" fill="%23fff"/><path d="M0 0h1440v50.5L1204 344 0 125.5z" fill="%23ffb800"/></svg>'),
    url('data:image/svg+xml,<svg width="1440" height="442" viewBox="0 0 1440 442" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1440 442H-31v-77.146L258.5 0 1440 325z" fill="%23fff"/><path d="M1440 422.5H0V343L261.5 45 1440 343z" fill="%23282828"/></svg>');
  background-repeat: no-repeat, no-repeat;
  background-position: top left,bottom left;
  background-size: 100% 30vh;
  padding-left: 20vw;
	padding-top: 20vh;

  @media (min-width: 650px) {
    padding-top: 30vh;
    background-size: 100% 40vh;
  }
}

.splash__heading {
  font-size: 3rem;
}

.splash__heading--offest {
  padding-left:.8rem;
}

.splash__divide {
  border-top: .2rem dashed;
  border-bottom: none;
  width: 15rem;
  margin: 1rem 0;

  @media (min-width: 650px) {
    width: 20rem;
  }
}
