.table {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
	background-color: rgba(0, 0, 0, 0.1);
}

#background {
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
#backgroundImg{
	width: 100%;
	height: 100%;
	position: absolute;
}

#listBox{
	position: absolute;
	z-index: 88888;
	top: 30%;
	left: 50%;
	width: 80%;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.listdiv{
	position: relative;
	height: 150px;
	width: 100%;
	overflow: hidden;
}
.listImg{
	position: relative;
	top: -150px;
	transition: 0.5s;
}
.listImg:hover{
	transform: translateY(50%);
}