* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	font-family: "GFS Didot", sans-serif;
	color: rgba(238,238,238,1);
}

html, body {
	min-height: 100%;
	background: rgba(81,43,83,1);
}

.divider {
	height: 5px;
	margin-top: 30px;
	margin-bottom: 15px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0), black, rgba(0, 0, 0, 0));
	background-repeat: no-repeat;
	background-size: 100% 5px;
	background-position: bottom;
}

.italics {
	font-style: italic;
}

.button span {
	color: #512d53;
	font-size: 1.8rem;
	font-weight: 800;
	font-style: italic;
	transition: 0.1s;
}

.button:hover > span {
	color: rgba(238,238,238,1);
	transition: 0.1s;
}

.header	{
	background: linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 80%);
	padding-bottom: 30px;
}

.header-headerimage {
	text-align: center;
}

.header-headerimage	img	{
	max-width: min(100%, 1200px);
	height: auto;
	border-radius: 0px 0px 20px 20px;
	box-shadow: 0px 0px 2px 3px black;
}

.home-main {
	margin: auto auto;
	max-width: 1200px;
}

.home-main-container {
	text-align: center;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.event-image img {
	max-width: 80%;
	max-height: 500px;
	margin-top: 10px;
	box-shadow: 0px 0px 4px 7px rgba(0, 0, 0, 1.0);
	border-radius: 10px;
	transition: 0.1s;
}

.event-image img:hover {
	filter: brightness(130%);
	transition: 0.1s;
}

.event-image p {
	padding-top: 15px;
	font-size: 1.2rem;
}

.event-info {
	padding: 0px 20px;
}

.event-info h2 {
	font-size: 3.4rem;
	text-shadow: 3px 3px 3px black;
	font-weight: 500;
}

.event-info h3 {
	font-size: 2.7rem;
	text-shadow: 3px 3px 3px black;
}

.event-info p {
	font-size: 1.6rem;
	text-shadow: 2px 2px 3px black;
}

.event-info button {
	margin-top: 20px;
	padding: 10px 15px;
	background: rgba(238,238,238,1);
	color: #512d53;
	border-radius: 30px;
	border: none;
	font-size: 1.8rem;
	font-weight: 800;
	cursor: pointer;
	transition: 0.1s;
	box-shadow: 0px 0px 5px 3px black;
	margin-bottom: 30px;
}

.event-info button:hover {
	background: #512d53;
	color: rgba(238,238,238,1);
	transition: 0.1s;
}

.social-icon img {
	height: 75px;
	margin-bottom: 15px;
	filter: drop-shadow(0px 0px 6px black);
	transition: 0.1s;
}

.social-icon img:hover {
	filter: drop-shadow(0px 0px 1px white);
	transition: 0.1s;
}

.about {
	padding: 0px 20px;
}

.about h2 {
	font-size: 3.4rem;
	text-shadow: 3px 3px 3px black;
	font-weight: 500;
}

.about p {
	font-size: 1.6rem;
	text-shadow: 2px 2px 3px black;
}

.about-image img {
	max-width: 80%;
	max-height: 500px;
	margin-top: 15px;
	box-shadow: 0px 0px 4px 7px rgba(0, 0, 0, 1.0);
	border-radius: 10px;
	transition: 0.1s;
}

.about-image img:hover {
	filter: brightness(130%);
	transition: 0.1s;
}

.past-events-container {
	margin-bottom: 30px;
}

.past-events-container h2 {
	font-size: 3.4rem;
	text-shadow: 3px 3px 3px black;
	font-weight: 500;
}

.past-events-container p{
	margin-bottom: 20px;
	padding: 0px 20px;
	font-size: 1.6rem;
	text-shadow: 2px 2px 3px black;
}

.past-events-container button {
	margin-bottom: 30px;
	padding: 10px 15px;
	background: rgba(238,238,238,1);
	color: #512d53;
	border-radius: 30px;
	border: none;
	font-size: 1.8rem;
	font-weight: 800;
	cursor: pointer;
	transition: 0.1s;
	box-shadow: 0px 0px 5px 3px black;
}

.past-events-container button:hover {
	background: #512d53;
	color: rgba(238,238,238,1);
	transition: 0.1s;
}

.past-events-flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 20px;
}

.past-events-flex-item {
	background-color: rgba(32, 17, 33, 1.0);
	width: 340px;
	text-align: center;
	padding: 15px 15px 0px 15px;
	box-shadow: 0px 0px 2px 3px black;
	border-radius: 20px;
}

.past-events-flex-item:hover {
	filter: brightness(150%);
	transition: 0.1s;
}

.past-events-container a {
	text-decoration: none;
}

.past-events-flex-item h3 {
	font-size: 2.2rem;
	text-shadow: 3px 3px 1px black;
	margin-bottom: 15px;
}

.past-events-flex-item img {
	width: 100%;
	margin-bottom: 15px;
	border-radius: 10px;
	box-shadow: 0px 0px 2px 3px rgba(81,43,83,1);
}

@media screen and (min-width: 800px) {
	
	.home-main-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.divider {
		grid-column: 1 / 3;
	}

	.event-info {
		text-align: left;
		padding-right: 20px;	
	}

	.about {
		text-align: left;
		margin-top: 20px;
		margin-right: -50px;
		margin-left: 20px;
		padding-left: 20px;
	}
	
	.past-events-container {
		text-align: left;
		grid-column: 1 / 3;
		margin-left: 20px;
		margin-right: 20px;
		padding-left: 20px;
		padding-right: 20px;	
	}

	.past-events-container p {
		padding: 0px;
	}
}