@font-face {
	font-family: "Ogg Roman";
	src: url("font/Ogg/OggRoman.otf");
}
@font-face {
	font-family: "BigCaslon";
	src: url("font/BigCaslon/BigCaslonFB-Regular.otf");
}
@font-face {
	font-family: "BigCaslonLogo";
	src: url("font/BigCaslon/BigCaslon.ttf");
}
@font-face {
	font-family: "BigCaslon";
	font-style: italic;
	src: url("font/BigCaslon/BigCaslonFB-Italic.otf");
}

*
{
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-weight: normal;
	box-sizing: border-box;
}

:root
{
	font-family: "Ogg Roman";
	font-size: 14px;
	background: #fff;
	text-align: center;
	--red: #e52629;
}
h1
{
	font-family: "BigCaslonLogo";
	color: #fff;
	text-align: auto;
	text-align: center;
	font-size: 1.6rem;
	margin: 1rem auto;
}
.logo
{
	width: 128px;
	margin: auto;
	display: block;
}
h2
{
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5rem;
	font-family: "Ogg Roman";
	letter-spacing: 8px;
	margin: 0 0 4rem;
}
header
{
	display: none;
}
.top-links
{
	display: flex;
	gap: 18px;
}
.top-links a:hover 
{
	text-decoration: underline;
}

.social-links > a > img
{
	width: 32px;
}

.section
{
	margin: auto;
	padding: 4rem 1rem;
}
#top 
{
	padding-top: 2rem;
}
.background-red
{
	background-color: var(--red);
}
.background-red h2, .background-red p, .background-red a
{
	color: #fff;
}
.background-white
{
	background-color: #fff;
}
.background-white h2, .background-white p, .background-white a
{
	color: var(--red);
}
.intro
{
	max-width: 400px;
	text-align: center;
	margin: 3rem auto;
}
.book
{
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
}
.book > *
{
	align-self: center;
}
.book > img 
{
	width: 250px;
}
.book .author
{
	font-size: 1.1rem;
	font-weight: 600;
}
.book .book-title
{
	font-family: "BigCaslon";
	font-size: 1.2rem;
	text-transform: uppercase;
	margin: 1rem 0 0.6rem;
}
.book .synopsis
{
	color: #878787;
	font-family: "BigCaslon";
	font-size: 1.0rem;
	margin: 1rem 0;
}
.book .separator
{
	display: block;
	margin: auto;
	width: 80px;
	height: 2px;
	background: #e52629;
}
.book .quote-content
{
	font-family: "BigCaslon";
	font-size: 1.3rem;
	font-style: italic;
	margin: 2rem 0 1rem;
	padding: 1.2rem 1.8rem 0;
	position: relative;
}
.book .quote-content:before
{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 0;
	background:  no-repeat center/100% url("images/quote1.png");
}
.book .quote-content:after
{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	right: 0;
	background:  no-repeat center/100% url("images/quote2.png");
}
.book .emphasis
{
	font-style: italic;
	color: #878787;
}
.book img.quote-publisher
{
	max-width: 140px;
	max-height: 32px;
}
.book .btn-order
{
	color: #878787;
	border: 1px solid #878787;
	border-radius: 14px;
	padding: 0.3rem 0.8rem;
	margin: 1rem 0 2rem;
	display: inline-block;
}
.book a.btn-order:hover
{
	color: #fff;
	border-color: var(--red);
	background: var(--red);
}
.founder
{
	margin-bottom: 2rem;
}
.founder-picture
{
	max-width: 80%;
}
.founder-job
{
	font-size: 1.2rem;
	margin: 1rem 0;
}
.founder-bio
{
	margin: 1rem;
}
.founder .collection-name
{
	font-weight: 700;
	font-style: italic;
	font-size: 1.2rem;
}
.contact-cols > div
{
	padding: 3rem 0;
	margin: 0 10%;
}
.contact-cols > div:first-child
{
	padding-top: 0;
	border-bottom: 2px solid var(--red);
}
.contact-cols > div:last-child
{
	padding-bottom: 0;
}
.contact-cols a
{
	text-decoration: underline;
}
.contact-type
{
	text-transform: uppercase;
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.footer
{
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
}
.footer-right
{
	display: flex;
	gap: 2.5rem;
}

.section.legal
{
	font-family: "BigCaslon";
}
.section.legal p 
{
	color: #878787;
	text-align: justify;
    text-align-last: center;
}
.legal .mt
{
	margin-top: 1rem;
}
.legal .mb
{
	margin-bottom: 1rem;
}
.legal h3
{
	color: var(--red);
	margin: 1.2rem auto;
}

@media screen and (min-width: 992px)
{
	h1
	{
		margin: 2rem auto;
		font-size: 2.0rem;
	}
	header
	{
		display: flex;
		justify-content: space-between;
		margin: 0 0 2rem;
	}
	.section 
	{
		width: 960px;
	}
	
	.books
	{
		display: flex;
		justify-content: space-between;
	}
	.book
	{
		width: 30%;
		margin-bottom: 0;
	}
	.book .quote-content
	{
		min-height: 60px;
	}
	.book .btn-order {
		margin: 1rem 0 4rem;
	}
	
	.founders
	{
		display: flex;
		justify-content: space-between;
		max-width: 900px;
	}
	.founder
	{
		flex-basis: 30%;
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.founder .collection-master
	{
		margin-top: auto;
	}
	
	.contact-cols
	{
		display: flex;
	}
	.contact-cols > div
	{
		width: 50%;
		padding: 0 8%;
		margin: 0;
	}
	.contact-cols > div:first-child
	{
		border-right: 2px solid #e52629;
		border-bottom: 0;
	}
}