@charset "utf-8";
/* CSS Document */
body{
	margin:0px;
	padding:0px;
	
}
ul{
	list-style:none;
}
a{
	text-decoration:none;
}
.container{
	/* margin-top: 50px; */
	width:100%;
	/* height: 100vh; */
	/* background-color:#a4152c; */
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}
@media (orientation:landscape) and (max-width:768px){
	.container{
          margin-top: 120px;
    }
}
.box{
	width:370px;
	height:610px;
	background-color:#1e1e26;
	border-radius: 10px;
	box-shadow: 2px 10px 12px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	margin: 20px 10px;
}

.container img{
	width:360px;
}

.model{
	height: 350px;
	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:#fff;
	text-align: center;
	margin-top: 20px;
}
.marvel{
	color:#fff;
	font-weight: bold;
	letter-spacing: 2px;
	font-family: bebas kai;
	font-size: 25px;
}


.logo{
	height: 60px;
}
.box:hover{
	background-color: #17171d;
	transform-style: preserve-3d;
	transform: scale(1.06);
	transition: all ease 0.3s;
	
	
}
.box:hover .marvel {
	color:gold;
	transition: all ease 0.5s;
}

.box:hover p {
    color:#fff;
	color:gold;
	transition: all ease 0.5s;
}

.box:hover{

	transition: all ease 0.5s;
}
/*--responsive for mobile phone--*/
@media(max-width:720px){
	.box{
		width: 94%;
		height: 500px;
	}
	.model{
		height:250px;
	}
	.details p{
		font-size: 16px;
		width: 250px;
	}
	
}
