@charset "utf-8";
/* CSS Document */

html{
	font-size: 16px;
	box-sizing: border-box;
	color: white;
	text-align: center;
}
body{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}
.product_card::before{
	content: "New!";
	background-color: goldenrod;
	border-radius: 30px;
	padding: 10px;
	font-size: 30px;
	position: absolute;
	top:-10px;
	left:10px;
}
.button{
	display: inline-block;
	color:#6900E9;
	font-weight: 800;
	font-size: 1.2rem;
	border-radius: 20px;
	text-decoration: none;
	background-color: white;
	padding: 5px;
	transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out;
}
.button:hover{
	transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out;
	background-color: #6900E9;
	color: white;
}
.product_card{
	margin: 30px;
	position: relative;
	width: 100%;
	max-width: 250px;
	background-color: #6900E9;
	padding: 10px;
	box-shadow: 2px 5px 8px rgba(0, 0, 0, 1);
	border-radius: 60px;
}
.product_img{
	max-width: 80%;
}
.discount-badge{
	position: absolute;
	right: 0;
	top:-8px;
	background-color: #FF0000;
	border-radius: 50%;
	padding: 0 7px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	transform: rotate(20deg)
}

.title-card{
	font-size: 2rem;
	margin-bottom: 5px;
}
.product-description{
	font-size:1rem;
	font-style: italic
}