@font-face
{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Lato-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face
{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/Lato-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



body, html
{
	margin: 0;
	padding: 0;
	background-color: black;
}

body
{
	width: 100vw;
	display: flex;
	flex-direction: row;
	background: center / cover no-repeat url('../images/intro-background.jpg') black;
}

main
{
	position: relative;
	width: 100%;
}

*
{
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	box-sizing: border-box;
	color: white;
}

a
{
	color: inherit;
}

a img
{
	border: 0;
	margin: 0;
	padding: 0;
}

h1
{
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 80px;
}

h2
{
	font-size: 24px;
	padding: 20px;
	margin: 0;
	font-weight: 300;
}

h3
{
	font-size: 14px;
	padding: 0;
	margin: 0 0 4px 0;
	font-weight: 900;
}

p
{
	padding: 0;
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 300;
}

span.date
{
	font-size: 11px;
	font-weight: 300;
	color: #999999;
}

section
{
	min-height: 100vh;
}

section#intro
{
	padding: 40px;
}

section#intro table
{
	margin: 40px 0;
	border-collapse: collapse;
}

section#intro table th
{
	text-align: left;
	font-weight: 900;
}

section#intro table td, section#intro table th
{
	padding: 8px 20px 8px 0;
	border-bottom: 1px solid #ffffff22;
}

main #player
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: black;
}

main #player
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background-color: black;
	overflow: hidden;
}

main #player video
{
	height: 100%;
	width: 100%;
}

aside
{
	background-color: #222222ee;
	box-shadow: 0 0 30px black;
	width: 300px;
}

aside .content
{
	padding: 20px;
	height: 100vh;
	overflow-y: scroll;
	overflow-x: none;
}

aside a
{
	display: block;
	height: 60px;
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: black;
	border: 2px solid black;
    transition: 0.2s;
    
    color: white;
    font-size: 14px;
    font-weight: 300;
    padding: 5px;
    text-decoration: none;
	vertical-align: top;
}

aside a.video
{
	background-image: url('../images/icon-video.svg');
	background-repeat: no-repeat;
	background-position: 10px center;
	
	padding-left: 50px;
}

aside a.info
{
	width: 80px;
	padding-top: 20px;
	text-align: center;
}

aside a.active
{
	border-color: yellow;
}

aside a:hover
{
	box-shadow: 0 0 30px #000000cc;
	transform: scale(1.1);
}

@media (max-width: 600px)
{
	body 
	{
		display: block;
	}
	
	aside
	{
		width: auto;
	}
	
	aside .content
	{
		height: auto;
		overflow: hidden;
	}

}
