@charset "UTF-8";
/* CSS Document */
*{
	margin: 0 0;
	padding: 0 0;
}

body{
	background: black;
}

.nav{
	position: fixed;
	width: 100%;
	z-index: 1000;
}
nav{
	position: relative;
}
nav ul{
	position: absolute;
	display: table;
	margin: 0 auto;
	width:100%;
	text-align: center;
	background-color: white;
	opacity: 0.6;
}
nav ul li{
	display: table-cell;
	min-width: 50px;
}
nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	font-size: 25px;
	color: black;
}
nav ul li a:hover{
	color: red;
}


.other{
	padding-top: 100px;
	position: relative;
	left: 10%;
}

figure {
	float: left;
	position: relative;
	overflow: hidden;
	width: 360px;
	margin: 0 20px 40px 0;
	transform: scale(1.0);
	transition: all 0.3s ease-out;
	box-shadow: 5px 5px 5px #222;
}
figcaption {
	position: absolute;
	bottom: 5px;
	right: 60px;
	z-index: 2;
	width: 300px;
	height: 40px;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
}
figure:hover{
	z-index: 10;
	transform: scale(1.5) rotate(0deg);
}
figure:hover figcaption {
	right: 100%;
}

p{
	color: white;
	padding-top: 10px;
	padding-left: 10px;
	margin: 0 0;
}

