html {
	font-family: "Roboto", "Open Sans", sans-serif;
	font-size: 12pt;

	background: #000000;
}

body{
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	
	min-height: 100vh;
	margin: 0 auto;

	color: #ffffff;
}

header, footer, nav {
	display: flex;
	flex-flow: row wrap;
	padding: 0 auto;
}

header, footer{
	width: 100%;
}

header {
	position: fixed;
	top: 0;

	display: flex;
	justify-content: right;
	align-items: center;

	background: #000000;
	transition: .5s;

	box-shadow: -8px 16px 30px 0px rgba(0,0,0,0.5);
}

header div{
	padding: .2em .5em;
	color: #222222;
}

footer {
	position: fixed;
	bottom: 0;

	display: flex;
	justify-content: flex-end;
	align-items: center;

	color: #FFFFFF;
	background: #000000;
	
	font-size: .75em;
}

footer div {
	padding: .5em .5em;
}

nav {
	justify-content: flex-end;
	align-items: center;
	padding: 0;
	flex: 1;
	height: 100%;
	/* color: #222222; */
}

main {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	
	align-self: center;
	min-width: 50%;
	max-width: 50em;
	flex: 1;

	text-align: justify;

	padding-top: 8em;
	padding-bottom: 8em;
	padding-left: 2em;
	padding-right: 2em;
}

/*img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	background: transparent;
}*/

#background-vid { 
	min-width: 100%;
	min-height: 100%;
	
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: -1;
}

#background-img { 
	min-width: 100%;
	min-height: 100%;
	
	position: fixed;
	top: 0%;
	left: 0%;
	z-index: -1;
}

h1 {
	font-family: "Open Sans", sans-serif;
}

article {
	font-family: "Roboto", sans-serif;
}


a {
	font-weight: normal;
	text-decoration: none;
	transition: 0.5s; 
}

nav a {
	padding: .5em 1em;
	color: #222222; 
}

a{
	color: #FFFFFF;
}

a:hover,
a:active {
	text-decoration: underline;
}

.logo {
	width: auto;
	height: 2em;
	padding: 0 0.5em;
	background: transparent;
}

.social-wrapper {
	flex: 1 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.social-logo {
	margin: 5px 10px;
	height: 25px;
	width: auto;
}


.dropdown{
	display: block;
	color: #FFFFFF;
	font-size: 2em;
}
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	background: #ffffff;
	background-color: #ffffff;
	box-shadow: -8px 8px 8px 0px rgba(0,0,0,0.2);
	z-index: 1;
	padding: 0;
	font-size: .5em;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
	float: none;
	color: black;
	text-decoration: none;
	display: block;
	text-align: right;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
	background-color: #000000;
	text-decoration: none;
	color: #ffffff;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
	display: block;
  }