h2 {
	color: black;
	text-align: center;
	margin-bottom: 10px;
}

.container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto, 100px, minmax(100px, auto);
  grid-gap: 10px;
  grid-template-areas:
  	"header header header header header"
    "nav nav nav nav nav"
    "main main main main main"
    "main main main main main"
    "footer footer footer footer footer";
}

#selectedVideoHolder {
	width: 80%;
	margin: 0 auto;
	height: 400px;
}

.youtubeVideo {
	width: 100% !important;
	height: 100% !important;
}

#videosHolder {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 100px auto 100px;
	-ms-grid-columns: 100px 1fr 100px;
	margin: 10px auto;
	width: 90%;
}

#videos {
	display: grid;
	display: -ms-grid;
	grid-template-columns: repeat(4, 1fr);
	-ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	grid-gap: 5px;
	margin: 0 auto;
	width: 100%;
}

.arrow:first-of-type {
	-ms-grid-column: 1;
}

.arrow:last-of-type {
	-ms-grid-column: 3;
}

.arrow-image {
	display: block;
	margin: 0 auto;
	width: 50%;
}

#left-arrow {
	display: none;
}

#right-arrow {
	transform: rotate(180deg);
}

.videoThumbnail {
	width: 100%;
	height: 100px;
}

.videoTitle {
	color: black;
	font-weight: bolder;
	width: 100%;
}

@media screen and (max-width: 1000px) {
	#selectedVideoHolder {
		width: 90%;
	}

	.arrow {
		display: none;
	}

	#videosHolder {
		grid-template-columns: repeat(1, 12fr);
		-ms-grid-columns: 1fr;
		display: block;
		margin: 50px auto;
	}

	#videos {
		grid-template-columns: repeat(1, 12fr);
		-ms-grid-columns: 1fr;
		-mg-grid-column: 1;
		-ms-grid-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
		width: 100%;
	}

	.video {
		-ms-grid-column: 1;
	}

	.videoThumbnail {
		height: 300px;
	}
}

@media screen and (max-width: 500px) {
	#selectedVideoHolder {
		height: 300px;
	}

	.videoThumbnail {
		height: 200px;
	}
}
