body {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Montserrat, Georgia, sans-serif;
}

header {
  margin: 0 auto;
}

main {
  margin: 0 auto;
  padding: 1rem;
}

div.container {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  column-gap: 2rem;
  row-gap: 4rem;
  justify-content: center;
  align-items: center;
}

div.image-container {
  width: 100%;
  height: 100%;
  position: relative;
  order: 1;
}

div.text-container {
  order: 2;
}

div.play-container {
  position: relative;
  margin: 0 auto;
  grid-column: span 2;
  order: 3;
}

div#play {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

img#localsam {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 0;
  border-radius: 0.25rem;
}

h1.title {
  margin: 4rem auto;
  text-align: center;
  font-size: 2.25rem;
  text-transform: uppercase;
  color: hsla(194, 89%, 46%, 1);
}

h1.image-lead {
  width: 100%;
  margin: 0 auto;
  bottom: 2rem;
  padding: 1rem;
  position: absolute;
  text-align: center;
  background: hsla(0deg 0% 83% / 90%);
  max-width: calc(100% - 2rem);
  min-width: 0;
  font-size: 2rem;
  color: hsla(86, 61%, 45%, 1);
}

h1#play {
  cursor: pointer;
}

.primary {
  color: hsla(86, 61%, 45%, 1);
}

.secondary {
  color: hsla(194, 89%, 46%, 1);
}

.underline {
  text-underline-offset: 0.175rem;
}

.line-spaced {
  line-height: 150%;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

p.lead {
  font-size: 1.5rem;
  text-align: center;
}

p.description {
  text-align: center;
}

p.center {
  text-align: center;
}

p.no-lead {
  margin: 0;
}

video#process {
  max-width: 48rem;
  grid-column: span 2;
  place-self: center;
  display: none;
  border-radius: 0.25rem;
}

.arrow-icon {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  div.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  div.text-container {
    order: 3;
  }

  div.play-container {
    order: 2;
  }

  h1.title {
    margin: 1rem auto;
    font-size: 1.25rem;
  }

  h1.image-lead {
    bottom: 0;
    position: relative;
    background: none;
    font-size: 1.25rem;
  }

  p.lead {
    font-size: 1rem;
    text-align: center;
  }
}
