/* 20170625_001 */


@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body 
	{
		margin: 0;
		padding: 0;
/*		Background fallback in case of IE8 & down, or in case video doens't load, such as with slower connections		*/
		background: #000;
		background-attachment: fixed;
		background-size: cover;
	}

#video-background 
	{
/*		making the video fullscreen		*/
		position: fixed;
		right: 0; 
		bottom: 0;
		min-width: 100%; 
		min-height: 100%;
		width: auto; 
		height: auto;
		z-index: -100;
	}

/* These just style the content */
article 
	{
/*		just a fancy border		*/
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border: 10px solid rgba(255, 255, 255, 0.5);
		margin: 10px;
	}

h1 
	{
		position: absolute;
		top: 20%;
		width: 100%;
		font-size: 96px;
		letter-spacing: 2px;
		color: #fff;
		font-family: 'Open Sans', sans-serif;
		text-align: center;
	}

h1 span 
	{
		font-family: 'Open Sans', sans-serif;
		letter-spacing: 0;
		font-weight: 300;
		font-size: 48px;
		line-height: 60px;
	}


/**
 * Footer styles
 */

.footer 
	{
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 1rem;
		font-size: 24px;
		color: #fff;
		font-family: 'Open Sans', sans-serif;
		letter-spacing: 0;
		text-align: center;
		background-color: #1b1b1b;
		background-color: rgba(27,27,27,0.5);
	}

.footer span 
	{
		font-size: 16px;
		line-height: 24px;
	}

.footer span a 
	{
		color: #f0f0f0;
	}
