.logo-container{
	align-content: center;
  justify-items: center;
}

/* #reflect{
	-webkit-box-reflect: below 500px linear-gradient(transparent, white);
	-moz-box-reflect: below 500px -mox-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), to(rgba(255, 255, 255, 0.5)));
	box-reflect: below 500px gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), to(rgba(255, 255, 255, 0.5)));
}
	 */
.logo{
	list-style-type:none;
	position: relative;
	z-index: 20;
}
	
.logo-shadow{
	filter: blur(20px);
	opacity: .2;
	position: absolute;
  right: calc(50% - 50px);
  top: 46%;
	transform: skew(3deg) scale(1.2);
	z-index: 1;
}
.logo-shadow .logo ul > li{
	background-color:rgba(0,0,0,1);
	box-shadow:0 0 35px rgba(0,0,0,1);
}

.logo{	
	animation: spin 30s infinite ease-in-out;
	transform-style: preserve-3d;
	transform-origin: center;
	width: 270px;
	height: 270px;
	transition: all 1s ease-in;
}

.logo-half{
	list-style-type:none;
	padding:0px;
  margin: 0px;
	transform-style: preserve-3d;
}
.logo-half--top {
	transform: translate3d(0px, 230px, 0px);
}
.logo-half--bottom {
	transform: rotateX(180deg) rotateY(90deg) translate3d(-10px, -40px, 10px);
}

.logo-half > li{
	background-color:#f4a62b;
	position: absolute;
	transform-origin: center;
}
.logo-half > li.cap{
	height: 40px;
  width: 40px;

	&.cap--inner-square {
		background-color: #fab71e;
		border: 15px solid #c18133;
	}
}
.logo-half > li.logo-leg-h-large {
  height: 270px;
}
.logo-half > li.logo-leg--h-medium {
  height: 230px;
}
.logo-half > li.logo-leg--h-small {
  height: 40px;
}

.logo-half > li.logo-leg--w-small {
  width: 40px;
}
.logo-half > li.logo-leg--w-medium {
  width: 230px;
}
.logo-half > li.logo-leg--w-large {
  width: 270px;
}
.logo-half > li:nth-child(1){
	background-color:#fab71e;
	transform: translate3d(0px, -30px, 115px);
	rotate: x 90deg;
}
.logo-half > li:nth-child(2){
	background-color:#fab71e;
	transform: translate3d(0px, 0px, 125px);
}
.logo-half > li:nth-child(3){
	background-color:#c18133;
	transform: translate3d(30px, 0px, -75px);
	rotate: y 90deg;
}
.logo-half > li:nth-child(4){
	background-color:#f4a62b;
	transform: translate3d(0px, 0px, 145px);
	rotate: y 180deg;
}
.logo-half > li:nth-child(5){
	background-color:#c18133;
	transform: translate3d(-10px, 0px, 135px);
	rotate: y -90deg;
}
.logo-half > li:nth-child(6){
	background-color:#f4a62b;
	transform: translate3d(0px, 10px, -95px);
	rotate: x -90deg;
}
.logo-half > li:nth-child(7){
	background-color:#fab71e;
	transform: translate3d(40px, -105px, -20px);
	rotate: x -90deg;
}
.logo-half > li:nth-child(8){
	background-color:#f4a62b;
	transform: translate3d(40px, -105px, 20px);
	rotate: x -90deg;
}
.logo-half > li:nth-child(9){
	background-color:#f4a62b;
	transform: translate3d(40px, 0px, 85px);
}
.logo-half > li:nth-child(10){
	background-color:#c18133;
	transform: translate3d(-105px, 0px, 250px);
	rotate: y 90deg;
}
.logo-half > li:nth-child(11){
	background-color:#f4a62b;
	transform: translate3d(0px, -230px, 85px);
}
.logo-half > li:nth-child(12){
	background-color:#fab71e;
	transform: translate3d(0px, -230px, 125px);
}
.logo-half > li:nth-child(13){
	background-color:#c18133;
	transform: translate3d(-105px, -230px, 20px);
	rotate: y 90deg;
}
.logo-half > li:nth-child(14){
	background-color:#c18133;
	transform: translate3d(-105px, -230px, -20px);
	rotate: y 90deg;
}
.logo-half > li:nth-child(15){
	background-color:#fab71e;
	transform: translate3d(0px, 105px, 250px);
	rotate: x 90deg;
}

.logo--cssbattle{
  background-image: url(https://cssbattle.dev/images/logo-new.svg);
  display: block;
  width: 300px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}

@keyframes spin {
	0% { transform: rotate3d(0,0,0, 0turn); } 
  5% { transform: rotate3d(0,0,0, 0turn); } 
  30% { transform: rotate3d(1,1,0, 1turn); } 
  50% { transform: rotate3d(0.031,1,-0.15, .55turn); } 
  70% { transform: rotate3d(0.031,1,-0.15, .55turn); } 
  100% { transform: rotate3d(0,0,0, 0turn); } 
}