* {
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	margin: 0;
}
header {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}
.logo img {
	height: 50px;
}
nav ul {
	list-style-type: none;
}
nav ul li {
	display: inline;
	margin: 0 10px;
}
nav ul li a {
	color: #333;
	text-decoration: none;
}
.banner {
	position: relative;
	width: 100%;
}
.banner img {
	width: 100%;
}
.banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	text-shadow: 2px 2px #333333;
}
.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.product {
	width: 45%;
	margin: 20px 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
	padding: 8px;
}
.product:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.product img {
	width: 100%;
}
.cta-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: blue;
	border-radius: 4px;
	color: white;
	text-decoration: none;
	text-align: center;
}
footer {
	padding: 20px;
	background-color: grey;
	text-align: center;
}
footer a {
	margin: 0 10px;
	color: white;
	text-decoration: none;
}
footer a:before {
	content: "•";
	margin-right: 10px;
}
footer a:first-child:before {
	content: "";
}

