
/* Defaults */

html, body {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #000;
  background-color: #000;
  height: 100%;
  margin: 0;
}
a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  color: #92754d;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: calc(18px + 3.6vw);
  letter-spacing: 4px;
  color: #92754d;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
h2 {
  text-align: center;
  font-family: 'Special Elite', cursive;
  color: #92754d;
  font-size: calc(8px + 1.5vw);
  margin-bottom: 0;
  margin-top: 0;
}
p {
  color: #000;
  font-family: 'Lora', serif;
  font-size: calc(12px + .5vw);
  line-height: calc(12px + 1.5vw);
  text-align: justify;
  margin-top: 0;
  margin-bottom: 0;
  hyphens: none;
}
button {
	background-color: #9b2c29;
	color: #fff;
	font-family: 'Special Elite', cursive;
	font-size: calc(10px + 2vw);
	font-weight: 400;
	padding: .5em;
	border: none;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.25);
}
button:hover {
  background-color: #CF4147;
	z-index: 10;
}

/* Universal stylings */

.hide {
  display: none;
}
.leader {
  color: #000;
  font-family: 'Special Elite', cursive;
  font-size: calc(20px + 2vw);
  line-height: calc(14px + 1.5vw);
}
.underline {
  padding-top: .5em;
  display: block;
  margin: auto;
  width: 25%;
  height: auto;
}
.book-title {
  font-style: italic;
}
.mobile-inter {
  display: none;
  width: 100%;
  margin-bottom: -1em;
}
.mobile-inter img {
  width: 100%;
  height: auto;
  margin: 0em;
}

/* Purchase Section */

.purchase-section {
  background-image: url(../img/purchase/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}
.purchase-container {
  background-color: rgba(255, 255, 255, 0.7);
  display: table;
  width: 100%;
  height: auto;
}
.purchase-books img {
  width: 65%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1em;
  padding-bottom: 1em;
}
.purchase-headline h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15em;
  letter-spacing: 5px;
  color: #000;
}
.purchase-headline h1 {
  color: #000;
  font-family: 'Lora', serif;
  font-size: 3em;
  font-style: italic;
}
.purchase-headline .underline {
  padding-top: 1.25em;
  padding-bottom: 1em;
  width: 15vw;
}
.buy-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 0em;
  padding-bottom: 1em;
  padding-left: 15%;
  padding-right: 15%;
}
.buy-options .option {
  text-align: center;
  width: 40%;
  margin: 0 auto;
  flex-direction: column;
  align-self: center;
  padding-bottom: 1em;
}
.purchase-section .paypal_btn {
  text-align: center;
  margin: 0 auto;
  background-color: #9b2c29;
	color: #fff;
  letter-spacing: 3px;
  font-family: 'Special Elite', cursive;
	font-size: 1.65em;
	font-weight: 400;
  padding-top: 1em;
  padding-bottom: .6em;
  margin-top: .5em;
  padding-left: 2em;
  padding-right: 2em;
	border: none;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.25);
}
.option table {
  text-align: center;
  width: 100%;
  font-family: 'Lora', serif;
  font-size: 1em;
}
.purchase-section .effect {
	-webkit-transition: all 200ms ease-in;
	-webkit-transform: scale(1);
	-ms-transition: all 200ms ease-in;
	-ms-transform: scale(1);
	-moz-transition: all 200ms ease-in;
	-moz-transform: scale(1);
	transition: all 200ms ease-in;
	transform: scale(.9);
}
.purchase-section .effect:hover {
	-webkit-transition: all 200ms ease-in;
	-webkit-transform: scale(1.5);
	-ms-transition: all 200ms ease-in;
	-ms-transform: scale(1.5);
	-moz-transition: all 200ms ease-in;
	-moz-transform: scale(1.5);
	transition: all 200ms ease-in;
	transform: scale(1);
}

/* Smaller Media */

/* Disable Parallax on touchscreens */

@media (pointer:coarse) {
  .purchase-section { background-attachment:local; background-size: auto; }
}
