body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-color: #FFDFDF;
	scroll-behavior: smooth;	
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #9AD0C2;
	margin: 10px auto;
	height: 75px;
	border-radius: 15px;

}

.logo {
	padding-left: 20px;
}

.logo img {
	width: 80px;
	height: auto;
}

.logo img:hover {
	transform: scale(1.1);
	transition: .3s;
}

nav {
	
}

nav ul {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-right: 20px;
}

nav ul li {
	list-style: none;
}

nav ul li a {
	text-decoration: none;
	color: #8E7AB5;
}

nav ul li a:hover {
	text-decoration: underline;
	color: #201658;
	transform: scale(1.3);
	transition: .5s;
}

.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	margin: 40px auto;
	border: 1px solid orangered;
}

.text-hero {
	padding-left: 30px;
}

.container img {
	height: 520px;
	height: 570px;
}

.img-hero img:hover {
	transform: scale(1.1);
	transition: .3s;
}

#about h2 {
	padding: 30px;
	text-align: center;
}

hr {
	width: 30%;
}

#product {
	width: 90%;
	margin: 40px auto;
}

#product h1 {
	color: #4F200D;
	text-align: center;
}

.product-card {
	width: 90%;
	border: 1px solid orangered;
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.card1 {
	width: 250px;
	text-align: center;
	border: 1px solid orangered;
	padding: 20px;
	background-color: antiquewhite;
	border-radius: 30px 0;
}

.card1 img {
	width: 100%;

}

.card1 img:hover {
	transform: scale(.9);
	transition: .4;
}

.card1 a {
	padding: 10px 20px;
	background-color: #FF76CE;
	color: whitesmoke;
	text-decoration: none;
	border-radius: 20px 0;
}

.card1 a:hover {
	background-color: #FFB1B1;
}

