@import url(http://fonts.googleapis.com/css?family=Anaheim);


.container2{
	margin: 4% auto;
	width: 210px;
	height: 140px;
	position: relative;
	perspective: 1000px;
}
#carousel{
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	animation: rotation 40s infinite linear;
}
#carousel:hover{
	animation-play-state: paused;
}
#carousel figure{
	display: block;
	position: absolute;
	width: 90%;
	height: 50%px;
	left: 10px;
	top: 10px;
	background: black;
	overflow: hidden;
	border: solid 5px black;
}
#carousel figure:nth-child(1){transform: rotateY(0deg) translateZ(288px);}
#carousel figure:nth-child(2) { transform: rotateY(40deg) translateZ(288px);}
#carousel figure:nth-child(3) { transform: rotateY(80deg) translateZ(288px);}
#carousel figure:nth-child(4) { transform: rotateY(120deg) translateZ(288px);}
#carousel figure:nth-child(5) { transform: rotateY(160deg) translateZ(288px);}
#carousel figure:nth-child(6) { transform: rotateY(200deg) translateZ(288px);}
#carousel figure:nth-child(7) { transform: rotateY(240deg) translateZ(288px);}
#carousel figure:nth-child(8) { transform: rotateY(280deg) translateZ(288px);}
#carousel figure:nth-child(9) { transform: rotateY(320deg) translateZ(288px);}

.bw{
	-webkit-filter: grayscale(1);
	cursor: pointer;
	transition: all .5s ease;
}
.bw:hover{
	-webkit-filter: grayscale(0);
}
.modal-title {
	color: black;
}

@keyframes rotation{
	from{
		transform: rotateY(0deg);
	}
	to{
		transform: rotateY(360deg);
	}
}

.footer {
  color: white;
  font-size: 0.7em;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #1B1B1B;
  text-align: center;
}

.standout {
	border: groove;
	border-color: rgba(0,0,0,1.00);
	font-weight: bolder;
	padding-top: 5px;
	padding-bottom: 5px;
	color: rgba(134,0,2,1.00);
	background-color: rgba(128,128,128,0.50);
}

#homeHeading3 {
	background-color: rgba(0,0,0,0.80);
	font-family: Shatter;
}

#stencil {
	font-family: stencil;
}

@media screen and (max-width: 800px), screen and (max-height: 300px) {
	#carousel, .container2 {
		display: none;
}
}