@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Yeseva+One&display=swap');

ul{
	list-style:none;
}
a{
	text-decoration:none;
}
.container{
	width:100%;
	height: 100vh;
	display:flex;
	justify-content: center;
	align-items: center;
	
}
.box{
	width:350px;
	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;
}
.model{
	height: 350px;
	max-height: 100%;
	max-width: 100%;
}
.details a{
	font-size: 40px;
	color: #ffffff;
	align-items: center;
	text-decoration: underline;
}
.details a:hover{
	color: chartreuse;
}

.pTitle{
	padding-top: 10px;
	color:#32323e;
	font-weight: bold;
	letter-spacing: 1px;
	font-family: 'Poiret One', cursive;
	font-size: 25px;
}

.box:hover{
	background-color:#32323e;
	transform-style: preserve-3d;
	transform: scale(1.02);
	transition: all ease 0.3s;
}
.box:hover .pTitle{
	color:#FEA42A;
	transition: all ease 0.7s;
}

