@font-face {
  font-family: "National 2 Compressed";
  src: url(https://cdn.prod.website-files.com/695a3d49caf2954b8bd6ceff/6980b2929d40c5a6dad77fe9_national-2-compressed-bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --off-white: #eff0eb;
  --off-white-1: #f9faf6;
  --charcoal: #231f20;
  --blue: #1f4886;
  --cherry: #a35378;
  --cherry-dark: #64173e;
  --green: #51724a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--off-white);
  color: var(--charcoal);
  scroll-behavior: smooth;
}

body {
  font-family: "Merriweather", Georgia, serif;
}

main#quotes {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.quote-slide {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vw 8vw;
  text-align: center;
  transition: background-color 0.4s ease;
}

.quote-slide blockquote {
  margin: 0 0 3.5vh 0;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
  max-width: 62rem;
  white-space: pre-wrap;
}

.quote-slide cite {
  font-family: "National 2 Compressed", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 3.4rem);
  line-height: 1;
}

/* font-size tiers based on quote length, assigned by script.js */
.len-xs blockquote { font-size: clamp(2.6rem, 6.5vw, 6rem); }
.len-s  blockquote { font-size: clamp(2.2rem, 5.2vw, 4.6rem); }
.len-m  blockquote { font-size: clamp(1.7rem, 3.8vw, 3.4rem); }
.len-l  blockquote { font-size: clamp(1.3rem, 2.6vw, 2.3rem); }
.len-xl blockquote { font-size: clamp(1.05rem, 1.9vw, 1.6rem); }

.quote-slide cite { color: var(--blue); }
.quote-slide { background: var(--off-white); }
