@charset "utf-8";
/* CSS Document */
body{
	background-color: black;
	margin:0px;
	padding:0px;
	background-size:cover;
	background-repeat:no-repeat;
	transition: all ease 0.3s;
	height: 100%;
}
ul{
	list-style:none;
}
a{
	text-decoration:none;
}
.container{
	margin-top:12vh;
	width:100%;
	height:420px;
	display:flex;
	justify-content: center;
	align-items: center;
}
.box{
	margin-top: 20px;
	width:300px;
	height: 420px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	margin-left: 38%;
}
.model{
	
	height: 420px;
	width: 100%;
	max-height: 100%;
	max-width: 100%;
}
.details{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 300px;
}
.details p{
	font-family: calibri;
	font-weight: bold;
	color:#6a6a74;
	text-align: center;
	margin-top: 20px;
}
.marvel{
	color:#32323e;
	font-weight: bold;
	letter-spacing: 2px;
	font-family: bebas kai;
	font-size: 25px;
}
.logo{
	height: 60px;
}
.box:hover{
	transform-style: preserve-3d;
	transition: all ease 0.3s;
}
.box:hover .marvel{
	color:#c0292b;
	transition: all ease 0.5s;
}
/*--responsive for mobile phone--*/
@media(max-width:720px){
	.container{
		height: 500px;
	}
	.box{
		margin: auto;
		
		width: 90%;
		height: 500px;
	}
	.model{
		height: 500px;
	}
	
}
