body{
	font-family: sans-serif;
	background:#2980b9;
}

.main{
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
}

div.box{
	margin: 80px;
}
.box{
	width: 300px;
	position: relative;
	overflow: hidden;
	box-shadow: 1px 2px 10px 5px #000;
}

.box img{
	width: 100%;
	height: auto;

}

.content{
	color: white;
	background:rgba(0,0,0,0.8);
	position: absolute;
	top: -100%;
	left: 0;
	height: 100%;
	width: 100%;
	padding:150px 20px;
	box-sizing: border-box;
	transition: all 0.5s;
	text-align: center;
	align-items: center;
}

.box:hover .content{
	top: 0;
}

.content ul{
	display: flex;
}

.content ul li{
	list-style: none;
}

.content ul li img{
	width: 40%;
	padding: 90px 0;
	margin-right: 30px;
	padding-top: 30px;
	cursor: pointer;
}