body {
	font-family: 'Poppins', sans-serif;
	color: #575117;
	background-image: url('../images/ppl.jpeg');
	background-attachment: scroll;
	background-size: 1600px;
	background-position: -65px 450px;
	background-repeat: repeat-y;
	margin: 0 auto;
}

header {
	background-image: url('../images/palmtrees.jpg');
	background-size: cover;
	height: 480px;
	margin-top: 10px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.siteTitle {
	color: #FFFDD2;
	margin: 0 auto;
	width: 1000px;
	text-align: center;
	padding-bottom: 10px;
}


p {
	color: #585426;
  	margin: 0 auto;
	text-align: center;
	font-size: 1.35em;
	width: 1100px;

}

.modal {
	width: 100%;
	padding-top: 10px;
	font-size: 1.1em;
	justify-content: space-around;
	margin-left: 20px;
  	margin-right: 20px;
}

/*Below is the CSS code for the Flipping Card Feature*/
/*Source: https://codepen.io/jacoboakley/pen/ZpRbqB*/
/*I copied and modified the open-source code available above */

div {
	width: 100%;
	height: 90%;
	display: flex;
	justify-content: center;
	flex-direction: row;
 }

.rowcolumn {
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.container {
	width: 300px;
	height: 270px;
	float: left;
	padding: 0 40px;
}

.card {
	transition: transform 1s;
	transform-style: preserve-3d;
	cursor: pointer;
}

.front, .back {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

}

.front {
	background: rgb(159, 227, 240, 0.65);
	font-size: 12px;
	text-align: center;
	transition: all .2s ease-in-out;
}

.front:hover {
	/*transform: scale(1.05);*/
	background: rgb(159, 227, 240, 0.45);
	/*transform: scale(1.1);*/
}

.back {
	background: rgb(252, 254, 205, 0.5);
	transform: rotateY(180deg);
}

.backfont {
	width: 250px;
	margin-left: 20px;
  	margin-right: 20px;
  	text-align: center;
  	font-size: 1.15em;
}


/*For the YouTube Video */

iframe {
	display: block;
	margin: 0 auto;
	align-items: center; 
	width: 960px;
	height: 540px;
}

