/* carroll67.com */

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

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: 200;
  line-height: 1.5;
  color: #333;
  background: #ddd;
}

/* ---- Layout ---- */

.page {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (min-width: 860px) {
  .page {
    padding: 0 40px;
  }
}

/* ---- Typography ---- */

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 28px;
}

h1 {
  font-size: 47px;
  margin-top: 0;
}

h2 {
  font-size: 36px;
  margin-top: 44px;
}

h3 {
  font-size: 28px;
  margin-top: 33px;
}

p {
  margin-bottom: 28px;
}

a {
  color: #333;
  text-decoration: underline;
}

a:hover {
  color: #000;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 3px solid #333;
  padding-left: 20px;
  margin: 28px 0;
  color: #555;
  font-style: italic;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* ---- Rules ---- */

hr {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 44px 0;
}

/* ---- Mono ---- */

.meta {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

code {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 90%;
  color: #333;
  background: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
}

/* ---- Header ---- */

.site-header {
  padding: 60px 0 0;
}

.site-header h1 {
  margin-bottom: 8px;
}

.site-header .tagline {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* ---- Content ---- */

.content {
  padding: 44px 0;
}

/* ---- Presentation embed ---- */

.presentation-break {
  margin: 44px -30px;
  background: #0a0a0a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

@media (min-width: 860px) {
  .presentation-break {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.presentation-break iframe {
  display: block;
  width: 100%;
  height: 70vh;
  border: none;
}

.presentation-label {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 30px;
}

@media (min-width: 860px) {
  .presentation-label {
    padding-left: 40px;
  }
}

/* ---- Lists ---- */

ul, ol {
  font-size: 22px;
  margin-bottom: 28px;
  padding-left: 24px;
}

li {
  margin-bottom: 6px;
}

/* ---- Footer ---- */

.site-footer {
  padding: 44px 0 60px;
  border-top: 1px solid #ccc;
}

.site-footer p {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 13px;
  color: #999;
  margin-bottom: 0;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
  body {
    font-size: 19px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .site-header {
    padding-top: 40px;
  }

  .presentation-break iframe {
    height: 50vh;
  }
}
