main {
	margin-top: 60px;
}

h1 {
	font-size: 40px;
	line-height: 48px;
	font-family: Roboto, sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: #000000;
	text-align: left;
}

h2 {
	font-size: 40px;
	line-height: 48px;
	font-family: Roboto, sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: #000000;
}

h4 {
	font-size: 30px;
	line-height: 38px;
	font-family: Roboto, sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: #000000;
}

p2 {
	font-weight: 600;
	color: #EC008C;
}

.shows {
	margin: 20px 60px;
	border-bottom: 1px solid #000000;
	padding-bottom: 20px;
}

.shows a {
	font-size: 18px;
	display: block;
	background-color: #EC008C;
	padding: 10px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 5px;
	transition: all ease-in-out 200ms;
}

.shows a:hover {
	background-color: #000000;
	color: #EC008C;
}

.shows-subscribe {
	display: flex;
	align-content: space-between;
}

.shows-subscribe-link {
	margin-left: 40px;
}

.archive {
	margin: 0 60px 40px;
	display: flex;
	flex-direction: column;
}

.archive img {
	width: 30%;
	height: 30%;
	margin-right: 20px;
}

.archive-show {
	display: flex;
}

.archive-showinfo a {
	margin-top: 20px;
	font-size: 18px;
	display: block;
	background-color: #EC008C;
	padding: 10px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 5px;
	transition: all ease-in-out 200ms;
}

.archive-showinfo a:hover {
	background-color: #000000;
	color: #EC008C;
}

.archive-showinfodate p {
	font-style: italic;
	font-size: 12px;
	color: #626262;
}

.youtubevideo-mobile {
	display: none;
}

/* MOBILE VERSION */

@media only screen and (max-width: 768px) {
	
	main {
		margin-top: 50px;
	}	
	
	.shows {
		margin: 20px 20px;
	}
	
	.shows p {
		text-align: center;
	}
	
	.shows-subscribe {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	.shows-subscribe-link {
		text-align: center;
		margin-left: 0;
	}
	
	.shows a {
		margin: 10px auto 0;
}

	h1, h2 {
		text-align: center;
		font-size: 32px;
	}
	
	.archive {
		margin: 0 20px 20px;
		justify-content: center;
	}
	
	
	.archive-show {
		flex-direction: column;
		justify-content: center;
	}
	
	.archive img {
		width: 80%;
		margin: 0 auto;
	}
	
	.archive-showinfo h4 {
		text-align: center;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.archive-showinfo a {
		margin: 20px auto;
	}
	
	.youtubevideo {
		display: none;
	}
	
	.youtubevideo-mobile {
		display: flex;
		justify-content: center;
	}
	
}

@media only screen and (min-width: 992px) {
	
}