body {
	padding: 0;
	margin: 0;
	display: flex;
}

@font-face {
  font-family: "Oregano";
  src: url("oregano.ttf") format("truetype");
}

#main-content {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

@media (max-width: 576px)
{
	.video-container {
		position: fixed;
		top: -25;
		left: -60px;
		width: auto;
		height: auto;
	}
}

@media (min-width: 577px)
{
	.video-container {
		position: fixed;
		top: 0;
		left: -250px;
		width: auto;
		height: auto;
	}
}

@media (min-width: 1000px)
{
	.video-container {
		position: fixed;
		top: 0;
		left: 0;
		width: auto;
		height: auto;
	}
}

#main-content h1 {
	text-align: center;
	font-size: 5rem;
	font-family: "Oregano", sans-serif;
	color: #fff;
	padding: 20px;
	margin: 15px;
	top: 25%;
	opacity: 1;
	position: fixed;
	text-shadow: 0 .06rem .1rem rgba(0, 0, 0, .5);
	z-index: 1;
}

.hashtag {
	color: #0066cc;
}

.color-overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.footer {
	text-align: center;
	font-size: 20px;
	font-family: "Didact Gothic";
	position: fixed;
	padding: .6em;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	text-shadow: 0 .06rem .1rem rgba(0, 0, 0, .5);
	z-index: 1;
}