:root {
	--col-width: 37vw;
	/* --purple-clr: #9658C6; */
	--purple-clr: #d0B5FF;
	--yellow-clr: #FDE618;
}

/* iPhone */
@media only screen and (max-device-width: 480px) 
		/* , (-webkit-device-pixel-ratio: 3)
		, (-webkit-device-pixel-ratio: 2) */
		{
	:root {
		--col-width: 80vw;
	}
}
body {
	width: 100%;
	margin: auto;
	/* background-color: #d0B5FF; */
	background-color: var(--purple-clr);
}

h2 {
	font-family: 'Alex Brush';
	font-size: 72px;	
	text-align: center;
	margin-bottom: 0px;
	margin-top: 10px;
}

hr {
	margin: 10px 0;
	border: 2px solid black;
	/* box-shadow: 5px 5px 3px gold; */
	box-shadow: 5px 5px 3px var(--yellow-clr);
}

.pic {
	width: 100%;
	height: auto;
}
.header {
	display: flex;
	flex-flow: row;
	width: 100%;
	margin-bottom: 0px;
	background-color: white;
	justify-content: center;
	padding: 30px 0px;
}

.main-page {
	display: flex;
	flex-flow: column;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	width: 80vw;
	margin: auto;
}

.top-row {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	align-items: center;
	width: 80vw;
	justify-content: space-around;
	background-color: white;
}

.next-row {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	align-items: center;
	width: 80vw;
	justify-content: center;
	margin-top: 10px;
	/* background-color: white; */
}

.page-row {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	align-items: center;
	width: 80vw;
	justify-content: space-between;
	margin-top: 20px;

}

.words {
	padding: 10px 0px;
	width: var(--col-width);
}

.words-full {
	padding: 10px 0px;
	width: calc(2 * var(--col-width));
}

.words-short {
	margin-right: 20px;
	max-width: var(--col-width);	
}

.picture {
	padding: 0px;
	width: var(--col-width);
	box-shadow: 5px 5px 3px var(--yellow-clr);
	margin-bottom: 20px;
}
.flyer {
	width: var(--col-width);
	margin-bottom: 20px;
}

.pic-class {
	box-shadow: 5px 5px 3px var(--yellow-clr);
}

.center-words {
	text-align: center;
	font-size: 36px;
	font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
	color: #730ec0;
	font-weight: bold;
}

.event {
	width: var(--col-width);
}

.links {
	display: flex;
	flex-flow: column;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	width: 80vw;
	margin-top: 0px;
}

.link-btn {
	color: black;
	background-color: var(--yellow-clr);
	border: none;
	border-radius: 8px;
	height: 48px;
	width: 240px;
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
}