body {
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	position: relative;
	min-height: 100%;
	color: #000;
	overflow: hidden;
	margin: 0;
	padding: 0;
  }

a { 
	color: #000;
}

h1 { 
	display: block;
	font-family: 'Cardo', sans-serif;
	font-size: 6em;
	margin: 0;
	font-weight: 400;
	text-align: center;
	vertical-align: bottom;
	line-height: 0px;
}

.line {
	fill: none; 
	stroke: #DC143C; 
	stroke-width: 15px; 
	stroke-linejoin: round;
	stroke-linecap: round;
}

#nav {
	display: block;
	position: fixed;
	margin: 0;
	left: 0px;
	top: 0px;
	height: 100%;
	z-index: 10;
	writing-mode: vertical-rl;
	text-align: center;
	width: 55px;
	font-size: 2em;
}

#nav a {
	text-decoration: none;
}

#time {
	display: block;
	position: fixed;
	right: 0px;
	top: 0px;
	height: 100%;
	z-index: 10;
	writing-mode: vertical-lr;
	text-align: center;
	width: 55px;
	font-size: 2em;
}

#chart{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	overflow-y: hidden;
	overflow-x: scroll;
	direction: rtl;
}

#charttext {
	position: fixed;
	left: 75px;
	right: 75px;
	top: 65px;
	bottom: 65px;
	font-size: 2em;
	overflow: auto;
	opacity: 0.1;
	-webkit-transition: opacity 0.2s; /* For Safari 3.1 to 6.0 */
	transition: opacity 0.2s;
	text-align: center;
	direction: ltr;
}

#about {
	position: fixed;
    left: 60px;
	right: 60px;
	top: 50px;
	bottom: 50px;
	padding: 20px 40px;
    font-size: 2.8em;
    overflow: scroll;
}

#title {
	position: fixed;
	display: block;
	margin: 0;
	left: 0;
	top: 50%;
	width: 100%;
	height: 0%;
	z-index: -10;
	overflow: visible;
	font-family: 'Cardo', sans-serif;
	font-size: 9em;
	font-weight: 400;
	text-align: center;
	vertical-align: bottom;
	line-height: 0px;
	opacity: 1;
	-webkit-transition: opacity 1s; /* For Safari 3.1 to 6.0 */
	transition: opacity 1s;
}

#title:after{
	content:"";
	position:absolute;
	border-bottom:15px solid #DC143C;
	min-width:200%;
	transform: rotate(45deg);
	transform-origin: 50% 50%;
	left: -50%;
	z-index: -11;
}

#charttext:hover {
  	opacity:1;
}

#chart:hover #title{
  	opacity:0;
}


@media only screen and (max-width: 1200px) {
	#about {
		padding: 15px 30px;
	    font-size: 2em;
	}

	#title {
		font-size: 5em;
	}
}
@media only screen and (max-width: 650px) {
	#chart{
		left: 0px;
    	right: 0px;
   		top: 0px;
    	bottom: 0px;
	}

	#charttext {
		left: 35px;
		right: 35px;
		top: 65px;
		bottom: 25px;
		font-size: 1.4em;
}

	#about {
		left: 40px;
		right: 40px;
		top: 60px;
		bottom: 50px;
		padding: 5px 5px;
	    font-size: 1.8em;
	}

	#title {
		font-size: 3em;
	}

	#nav {
	    min-width: 100%;
	    font-size: 1.6em;
		left: 0px;
		top: 10px;
		height: 55px;
		writing-mode: horizontal-tb;
	}

	#time {
		display: none;
	}
}