 *
  {
      box-sizing: border-box;
	 
  }
  Html , body
  {
      border: 0;
      padding: 0;
      margin: 0;
	  min-height:100%;
      overflow-x: hidden;
	  overflow-y:hidden;
	  
  }
body {
	background: linear-gradient(red,transparent,transparent,transparent,transparent,blue),url(logo2.png),url(cn.jpg)no-repeat;
width: 100vw;
height: 100vh; 
background-size: 100% 100%;
background-repeat: no-repeat;
position: relative;
display:contain;
}
#container {
	width: 100%;
	height:100%;
	-webkit-perspective: 750;
}

#shape {
	position: relative;
	display:block;
	top: 50%;
	margin: 0 0 0 0;
	width: 250px; height: 250px;
	-webkit-animation: spin 20s infinite linear;
	-webkit-transform-style: preserve-3d;
}
#shape2 {
	position: fixed ;
	bottom:40%;
	left:35%;
	right:41%;
	transform: translate(-50%,-50%);
	width: 250px; height: 250px;
	-webkit-animation: spin2 20s infinite linear;
	-webkit-transform-style: preserve-3d;
}



a img {
	opacity: 0.95;


	-webkit-transition: opacity 1s;
}

a:hover img {
	opacity: 1;
}

h1 {
	color: rgba(0,0,0,0.25);
	font-family: sans-serif;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: -2px;
	padding-top: 50px;
	text-align: center;

	text-shadow: 0px 2px 3px rgba(255,255,255,0.3);
}

#shape > div {
	border: 1px solid #333;
	position: absolute;
	width: 250px; height: 250px;
    
	-webkit-border-radius: 4px;
	-webkit-transition: -webkit-transform 2s;
}

#shape2 > div img {
	width: 100%; height: 100%;
}
#shape2 > div {
	border: 1px solid #333;
	position: fixed;
	width: 250px; height: 250px;

	-webkit-border-radius: 4px;
	-webkit-transition: -webkit-transform 2s;
}

#shape > div img {
	width: 100%; height: 100%;
}

/* This is where the 3D magic happens */
@-webkit-keyframes spin {
	0%{ -webkit-transform: rotateY(0) rotateX(0); }
	40%  { -webkit-transform: rotateY(-360deg) ; }
	50%  { -webkit-transform: rotateX(-90deg) ; }
	80%  { -webkit-transform: rotateX(-180deg);  }
	100%  { -webkit-transform: rotateX(-360deg);  }
}
@-webkit-keyframes spin2 {
	0%{ -webkit-transform: rotateY(0) rotateX(0); }
	40%  { -webkit-transform: rotateY(-360deg) ; }
	50%  { -webkit-transform: rotateX(-90deg) ; }
	80%  { -webkit-transform: rotateX(-180deg);  }
	100%  { -webkit-transform: rotateX(-360deg);  }
	
	

	
}

/* 3D positioning for each of the images/links */
.one { -webkit-transform: rotateX(90deg) translateZ(125px); }
.two { -webkit-transform: translateZ(125px); }
.three { -webkit-transform: rotateY(90deg) translateZ(125px); }
.four { -webkit-transform: rotateY(180deg) translateZ(125px); }
.five { -webkit-transform: rotateY(-90deg) translateZ(125px); }
.six { -webkit-transform: rotateX(-90deg) translateZ(125px); }