.carousel {
  background-color: var(--fern);
  width: 100vw;
  height: 600px;

  font-family: 'KH Interference';

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel .container {
  width: 1400px;
  padding: 150px 0;
  margin: auto;
}

.carousel a {
  color: inherit;
  text-decoration: none;
}

.carousel .pre-heading, .carousel .post-heading {
  font-weight: 400;
}

.carousel h1, .carousel .pre-heading, .carousel .post-heading {
  text-shadow: 0 0 10px var(--cod-gray);
}

.carousel h1 {
  font-size: 6em;
  font-family: 'Playfair Display';
  font-weight: 500;
  margin: 0;
}

.carousel .action {
  display: inline-block;
  background: var(--alto);
  color: var(--fern);
  border-radius: 4px;
  padding: 20px 8px 8px 8px;
  margin-top: 20px;
  font-family: 'MADE Outer Sans';
  font-size: 18px;
}

.carousel .action a {
  color: transparent;
  text-decoration: none;
  background-image: var(--carousel-bg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
}

.marquee {
  height: 1em;
  font-size: 16px;
  padding: 10px 0 12px;
  font-family: 'KH Interference';
  overflow: hidden;
  color: var(--cod-gray);
  white-space: nowrap;
}

.marquee.yellow {
  background: var(--confetti);
}

.marquee.purple {
  background: var(--studio);
}

.marquee span {
  padding: 0 1em;
}

.marquee-track {
  display: inline-flex;
  will-change: transform;
  animation: marquee 90s linear infinite;
}

.homepage-grid .section {
  min-height: 200px;
}

.homepage-grid .feature {
  background: var(--confetti);
  color: var(--cod-gray);
}

.homepage-grid .section.narrow {
  border: 1px solid #555;
}

.homepage-grid .section.blank {
  border: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}