﻿header {
	background-color: black;

	text-align: center;

	margin: 50px auto;
	max-width: 718px;

	padding: 15px;
}

.content {
  max-width: 1000px;
  margin: auto auto;
  background-color: black;
  height: 100%;
}

.block-border{
	border-style: solid;
	border-width: 15px;
	border-radius: 30px;
	border-color: #2f2f2f;
}

.video-container {
	position: relative;
	width: 90%;
	height: 90%; 
	overflow: hidden;
}
.video-container video {
	/* Make video to at least 100% wide and tall */
	min-width: 100%; 
	min-height: 100%; 

	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;

	/* Center the video */
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

body {
	padding: 0px;
	background-color: #1c1c1c;
	color: #9c9c9c;
	font-family: monospace;
	
}

html,body { height:100%; }

h1 {
	color: #fefefe;
}

h2 {
	color: #bcbcbc;
}

b {
	color: #bcbcbc;
}

a {
	color: green;
}

.highlightable {
	transition: 0.6s;
}

.highlightable:hover {
	color: #f2f2f2;
}