/* Reset styles for browser consistency */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Style for header and navigation */
header {
	background-color: #333;
	color: #fff;
	padding: 1rem;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul li {
	margin-right: 1rem;
}

nav ul li:last-child {
	margin-right: 0;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
}

/* Style for hero section */
#hero {
	background-color: #f1f1f1;
	padding: 2rem;
	text-align: center;
}

#hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

#hero p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

#hero .button {
	display: inline-block;
	background-color: #333;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 0.25rem;
	transition: background-color 0.3s ease;
}

#hero .button:hover {
	background-color: #666;
}

/* Style for featured products section */
#featured-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
}

.product {
	flex-basis: calc(33.33% - 1rem);
	margin-bottom: 2rem;
}

.product img {
	width: 100%;
}

.product h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.product p {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.product .button {
	display: inline-block;
	background-color: #333;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 0.25rem;
	transition: background-color 0.3s ease;
}

.product .button:hover {
	background-color: #666;
}

/* Style for footer */
footer {
	background-color: #333;
	color: #fff;
	padding: 1rem;
	text-align: center;
}

.my-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.my-button:hover {
  background-color: #3e8e41;
  cursor: pointer;
}
