@charset "UTF-8";
/* CSS Document */
/* unvisited link */
a:link {
    color: antiquewhite;
	text-decoration: none;
}

/* visited link */
a:visited {
    color: grey;
	text-decoration: none;
}

/* mouse over link */
a:hover {
    color: darkred;
	text-decoration: none;
}

/* selected link */
a:active {
    color: darkgoldenrod;
	text-decoration: none;
}


/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    padding: 30px;

	font-family: "Roboto", sans serif;
	font-weight: 100;
	letter-spacing: 0.5em;
	
}
h1 {
	font-weight: 100;
	color: antiquewhite;
	letter-spacing: 0.2em;
	word-spacing: 0.1em;
}
p {
	font-weight: 200;
	color: #FFFFFF;
	letter-spacing: 0.0em;
	word-spacing: 0.5em;
}


