@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap');
/* Reset styles */
html {
  font-family: 'Crimson Text', serif; /* default font */
  font-size: 22px; /* default font size from which all the rest scales */
  color: #333; /* default font color */
}

body {
  line-height: 1.5;
  min-height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  margin: 0;
  background-color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif; /* default font for headers */
}

h1 {
  font-size: 1.7rem;
  margin: 0;
  padding: 1%;
}

h2 {
  font-size: 1.3rem;
  margin: 3% 0 0 0;
  padding: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 1.15rem;
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 1.05rem;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

a {
  text-decoration: none;
  color:#333;
}

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  padding: 0 5%; /* vertical and horizontal padding*/
  font-size: .75rem;
  text-align: center;
  margin-bottom: 1em;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.date {
  font-size: .85rem;
  text-align: start;
  font-style: italic;
  margin: 0 0 1.4rem 0;
}

strong {
  font-style: italic;
  font-weight: 700;
}

/* blockquote {
  padding-left: 5%;
  margin: 0 0 1.4rem 0;
  font-style: italic;
} */

blockquote {
	font-size: 1rem;
  font-style: italic;
  text-align: center;
	display: flex;
	flex-direction: column;
	position: relative;
  margin: 0 0 .5rem 0;
  /* margin: 0 0 1.4rem 0; */
  padding: 0 3%;
}

blockquote:before,
blockquote:after {
	color: #e7e5dc;
	position: absolute;
	font-size: 12rem;
  z-index: -1;
}

blockquote:before {
	content: '“';
	left: -3%;
	top: -4rem;
}

blockquote:after {
	content: '”';
	right: 3%;
	bottom: -10.8rem;
}

.author {
  text-align: center;
  font-size: 0.8rem;
}

.hyperlink:link {
  color: rgb(34, 194, 56);
} 

.hyperlink:visited {
  color: green;
}

li {
  list-style-type: none;
  font-size: 0.9rem;
}

.bullet {
  list-style-type: circle;
}

sup {
  font-size: 0.6rem;
}

sub {
  font-size: 0.6rem;
}

.title {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.upperscript {
  font-size: 0.8rem;
}

.separator {
  border-top: 1px solid #333;
  margin: 0;
  }

.image {
  width: 100%;
  margin: 1em 0;
}

.credit {
  text-align: end;
}

article {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  html {
    font-size: 16px;
  }
}