@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@900&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	font-size: 16px;
	background-color: hsl(225, 100%, 98%);
	font-family: 'Red Hat Display', sans-serif;
	min-height: 100vh;
}

.container{
	background-image: url("../images/pattern-background-desktop.svg");
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: hsl(225, 100%, 94%);
	border-radius: 20px;
	width: 1200px;
	height: 650px;
	box-shadow: 60px -16px teal;
	box-shadow: 8PX 8px 28px rgba(0,0,0,0.25), 0 0px 2px rgba(0,0,0,0.22);
}

.card{
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
	width: 380px;
	height: 580px;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 8PX 8px 28px rgba(0,0,0,0.25), 0 0px 2px rgba(0,0,0,0.22);
}

.card .title{
	margin-top: 40px;
	color: hsl(223, 47%, 23%);
	font-weight: 900;
}

.card .description{
	margin-top: 20px;
	text-align: center;
	font-size: 16px;
	color: #9c9c9c;
	margin-bottom: 20px;
}

.img-topo-card{
	max-width: 381px;
	border-radius: 15px 15px 0 0 ;
}

.card .box-icons{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 330px;
	height: 100px;
	background-color: hsl(225, 100%, 98%);
	border-radius: 5px;
	text-align: center;
	color: #9c9c9c;
}
.card .box-icons p{
	color: #9c9c9c;
	margin-left: -50px;
}

.card .box-icons span{
	color: hsl(223, 47%, 23%);
	font-weight: 900;
}

.card button{
	background-color: hsl(245, 75%, 52%);
	color: #ffffff;
	height: 40px;
	width: 330px;
	border: 2px solid hsl(223, 47%, 23%);
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 8PX 8px 28px rgba(0,0,0,0.25), 0 0px 2px rgba(0,0,0,0.22);
	margin-top: 30px;
}

.card .orderCancel{
	margin-top: 20px;
	color: #9c9c9c;
	font-size: 13px;
}

@media (max-width: 425px){
	.card{ 
	width: 290px;
	height: 580px;
	margin: 10px;
	}

	.card .description{
		font-size: 14px;
	}

	.card img{
		max-width: 291px;
	}

	.card .box-icons{
		width: 270px;
	}

	.card .box-icons p{
		margin-left: -20px;
	}

	.card button{
		width: 270px;
	}
}

	
