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;
}
/* end of reset */

body {
	background-color: #FFF;
}

.bg {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	animation: bg-init 4s;
}
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: overlay-color 80s infinite;
}

@keyframes bg-init {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}

@keyframes overlay-color {
	0%    { background: rgba(255, 255, 255, 0.5); }
	25%   { background: rgba(0, 0, 0, 0.5); }
	50%   { background: rgba(170, 180, 32, 0.5); }
	75%   { background: rgba(0, 0, 0, 0.5); }
	100%  { background: rgba(255, 255, 255, 0.5); }
}

.path {
	position: absolute;
	width: 100%;
	height: 100%;
	mask: url(#mask);
}

@media (min-aspect-ratio: 16/9) {
	.bg-video {
		width: 100%;
	}
}

@media (max-aspect-ratio: 16/9) {
	.bg-video {
		height: 100%;
	}
}

content {
	position: absolute;
	/* left: -1000px;
	top: -1000px; */
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#canvas {
	width: 100%;
	height: 100%;
}

.logo {
	position: absolute;
	width: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-58%, -50%);
	text-shadow: 2px 2px;
	pointer-events: none;
}

#svgLogo {
	fill: #FFF;
	stroke: none;
	stroke-width: 0px;
	pointer-events: none;
}

.ie .bg {
	display:none;
}