:root {
  --purp: #652d90;
	
}


body {
	font-family: 'Open Sans';
	background-color: #d5f1fc;
	background-image: url('img/sky.jpg');
	background-size: cover;
	
}
div {
		box-sizing:border-box;
}

h1 {
	font-family: 'Delicious Handrawn';
	font-size: 5rem;
	text-transform: uppercase;
	margin-bottom: 0;
	color: var(--purp);
	
	
}
h2 {
	color: var(--purp);
	
}
h2 a {
		color: var(--purp);
	
	

}
.subtitle {
		font-family: 'Delicious Handrawn';
	font-size: 2rem;

}
img {
	max-width: 100%;
	border-radius: 30px;
	border: 3px solid rgba(255,255,255,0.6);
}

.the-container {
	display: flex;
	flex-direction: column;
	width: 95%;
	max-width: 1280px;
	margin: 0 auto;
}
.top {
	width: 100%;
	text-align: center;
	padding-bottom: 30px;
}
.the-container > div {
	width: 100%;
	max-width: 100%;
}


html {
	position: relative;
	
}
.intro {
	background: rgba(255,255,255,0.5);
	padding: 1rem 1rem;
	width: 100%;
		border-radius: 30px;


}
p {
	font-size: 1.125rem;

	line-height: 1.5;
}
.quotes {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 2rem !important;
}
.quote {
	background: rgba(250, 191, 211,0.5);
	padding: 2rem;
	margin-bottom: 1rem;;
	border-radius: 30px;
	width: 100%;
	
	max-width: 100%;
}
blockquote {
	margin: 0;
	display: ;
}
cite {
	/*! width: 100%; */
	text-align: right;
	/*! display: block; */
	font-weight: bold;
}
.big-btn {
	width: 100%;
	background-color: #fff;
	padding: 1.5rem 2rem;
	display: flex;
	border-radius: 30px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 2px;
	text-align: center;
	justify-content: center;
	background: url(img/sky.jpg) top center no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 1.25rem;
	max-width: 100%;
	display: none;
}
@media (min-width: 992px) {
	.the-container {
		flex-direction: row;
	}
	.left {
	width: 50%;
	padding: 2rem;
	}
	.right {
		width: 50%;
		padding: 2rem;
	}
	.intro {
		padding: 2rem;
	}
}