/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Styles Start Here */

BODY {
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

.hide {
	display: none;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	border-bottom: 1px solid #000;
}

input {
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	color: #000;
	font-weight: bold;
	font-size: 40px;
	border: 5px solid #000;
	padding: 5px 10px 5px 10px;
	width: 232px;
	position: absolute;
	top:50%;
	left: 50%;
	margin-top: -40px;
	margin-left: -131px;
	text-align: center;
}

input:focus {
    outline:none;
}

::-webkit-input-placeholder {
   color: #000;
}

:-moz-placeholder { /* Firefox 18- */
   color: #000; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #000;  
}

:-ms-input-placeholder {  
   color: #000;  
}

.login {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #fff;
	z-index: 9999;
}

.menu {
	width: 300px;
	text-align: center;
	font-weight: bold;
	font-size: 40px;
	position: absolute;
	top:50%;
	left: 50%;
	margin-top: -80px;
	margin-left: -150px;
	line-height: 50px;
}

.about {
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top:0;
	z-index: 9998;
}

.about-text {
	position: relative;
	width: 100%;
	padding: 80px 40px 90px 40px;
	box-sizing: border-box;
	margin: 0 auto;
	font-size: 40px;
	font-weight: bold;
}

.about-text .close {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.video {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
}
.video > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* 1. No object-fit support: */
@media (min-aspect-ratio: 16/9) {
  .video > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video > video { width: 300%; left: -100%; }
}
/* 2. If supporting object-fit, overriding (1): */
@supports (object-fit: cover) {
  .video > video {
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
}


.controls {
	position: absolute;
	bottom: 5%;
	left:50%;
	margin-left: -73px;
	background-color: #fff;
	width: 146px;
	padding: 15px;
	box-sizing: border-box;
	z-index: 9999;
	text-align: center;
}

.controls a:hover {
	border-bottom:0px;
}

.controls .play {
	margin-right: 10px;
	display: inline-block;
	height: 30px;
	width:15px;
	background-image: url('play.png');
	background-repeat: no-repeat;
	background-position: center top;
}

.controls .play.on {
	background-position-y: -30px;
}

.close:hover {
	filter: invert(1);
	-webkit-filter: invert(1);
}