html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

#library {
  display: none;
}

canvas {
  -webkit-transform: translateZ(0);
}

#header-title
{
	color: #ffffff;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-top: 32px;
	font-family: bungee_shade, sans-serif;
	width : 100%;
}

#title {
	color: #ffffff;
        text-align: center;
        font-size: 2.6rem;
        font-weight: 700;
        margin-top: 32px;
        font-family: bungee_shade, sans-serif;
        width : 100%;
}

#subtitle {
        width: 100%;
/*      height: 200px;
*/      color: white;
        font-size: 25px;
        text-align: center;
        font-family: "valkyrie_b", serif;
	#font-family: "proxima-nova",proxima-nova;
        font-weight: bold;
}

#contact-container {
	text-align: center;
}

#contact {
	padding: 5px;
	display: inline-block;
/*	height: 200px;
*/	color: white;
	font-size: 20px;
	text-align: center;
        font-family: "valkyrie_b", serif;
	#font-family: "proxima-nova",proxima-nova;
        font-weight: bold;
}

a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1.05);
}

