@font-face {
    font-family: 'Open Sans';
    src: url('../../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#424242;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans';
	font-size:13px;
	color:#fff;
}

/*
	in base
*/


#canvas-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:#fff;
	overflow:hidden;
	color:#000;
}

#title {
	position:absolute;
	bottom:100px;
	left:100px;
	width:360px;
}

div.node {
	position:absolute;
	background-repeat:no-repeat;
	background-size:contain;
	cursor:pointer;
}

#node-1 {
	bottom:50px;
	left:40%;
	background-image:url('img/node1.png');
	width:200px;
	height:60px;
}

#node-2 {
	top:50px;
	left:40%;
	background-image:url('img/node2.png');
	width:80px;
	height:180px;
}

#node-3 {
	top:50%;
	left:100px;
	background-image:url('img/node3.png');
	width:200px;
	height:60px;
	transform:translateY(-50%);
}

#node-4 {
	top:165px;
	left:40%;
	background-image:url('img/node4.png');
	width:70px;
	height:160px;
	transform:translateX(280px);
}

div.connection {
	position:absolute;
	width:1px;
	height:1px;
	background-color:#000;
	transform-origin:0 0;
	opacity:0;
	transition:opacity 1s, background-color 1s, box-shadow 1s;
}

#con-1 {
	margin:0px 0px 58px 25px;
	bottom:50px;
	left:40%;
}

#con-2 {
	margin:140px 0px 0px 10px;
	top:50px;
	left:40%;
}

#con-3 {
	margin:19px 0px 0px 180px;
	top:50%;
	left:100px;
}

#con-4 {
	margin:20px 0px 0px 59px;
	top:165px;
	left:40%;
}

div.connected {
	background-color:#4FB5FF;
	box-shadow:0px 0px 5px #4FB5FF;
}

#text-container {
	position:absolute;
	top:60%;
	right:100px;
	z-index:10;
	max-width:50%;
	transition:opacity 0.8s;
}

#text-container img {
	max-width:100%;
	max-height:100px;
}

#cat {
	position:absolute;
	top:-10px;
	left:40%;
	margin-left:20px;
	width:10px;
	height:10px;
	border-radius:50%;
	opacity:0;
	overflow:hidden;
	transition:height 7.56432s, top 0.5s, left 0.5s, opacity 0.5s;
}

#read-more {
	display:none;
	position:absolute;
	bottom:50px;
	right:50px;
	z-index:10;
	padding:10px;
	background-color:rgba(0,0,0,0.1);
	opacity:0;
	color:#424242;
	transition:opacity 2s;
}

#read-more a {
	color:#8a8a8a;
	text-decoration:none;
	border-style:solid;
	border-color:#2071a6;
	border-width:0px;
}

#read-more a:hover {
	text-decoration:none;
	border-width:0px 0px 1px 0px;
}