/* Global */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-size: 17px;
	background-color: black;
}
h1 {
	font-size: 4rem;
}
#myVideo {
	position: fixed;
	left: 0;
	bottom: 0;
	min-height: 100%;
}
.banner {
	display: flex;
	justify-content: center;
}
.content {
	position: fixed;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	margin: auto;
	color: #f1f1f1;
	width: 350px;
	height: 100%;
	padding: 150px 20px 20px 20px;
	text-align: center;
}
#myBtn, .enter {
	width: 200px;
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	cursor: pointer;
	margin-top: 20px;
	margin-bottom: 5px;
}

/* Description */
.guide h2 {
	font-weight: 400;
}
.item-divider {
	margin: 2rem 0;	/* Space out the Bootstrap <hr> more */
}
.item-heading {
	font-weight: 300;
	line-height: 1;
	letter-spacing: -.05rem;
}

/* -- RESPONSIVE CSS -- */
@media (min-width: 40em) {
	.item-heading {
		font-size: 50px;
	}
}
@media (min-width: 62em) {
	.item-heading {
		margin-top: 0;
	}
}
