* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto Mono', monospace;
  font-weight: 300;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: #3a4052;
}

h1 {
	font-family: 'Ranga', cursive;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
  letter-spacing: 2px;
	margin-bottom: 15px;
  text-shadow: 1.5px 1.5px #000;
}

h3 {
	font-family: 'Ranga', cursive;
  font-weight: 400;
	font-size: 30px;
  letter-spacing: 1.5px;
  text-shadow: 1.5px 1.5px #000;
}

ol {
  margin: 40px 200px;
  text-align: left;
  background-color: rgba(58, 64, 82, 0.5);
  border: 1px solid #fff;
  list-style-position: inside;
  padding: 15px;
}

li > a {
  color: #99FFCC;
	font-family: 'Roboto Mono', monospace;
  font-weight: 300;
}

li > a:hover {
  color: #3300FF;
  text-decoration: underline;
}

.showcase {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #3a4052 url('https://storage.googleapis.com/brphil-assets/cover.png') no-repeat center
		center/cover;
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-container:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
}

.content {
	z-index: 2;
}

.btn {
	display: inline-block;
	padding: 5px 10px;
	background: #3300FF;
	color: #fff;
	border-radius: 4px;
	margin-top: 50px;
  font-family: 'Ranga', cursive;
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px #000;
}

.btn:hover {
	transform: scale(0.98);
}

#about {
	padding: 40px;
	text-align: center;
}

#about p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: auto;
}

#about h1 {
	text-shadow: none;
}

#about h2 {
	margin: 30px 0;
	color: #3a4052;
}

.social a {
	margin: 0 5px;
}
