body {
  font-family: 'Papyrus', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('bg.jpg');
  background-size: cover;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  padding: 20px;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0 10px;
}
nav a {
  color: black;
  text-decoration: none;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
main h2 {
  margin: 0;
}
main img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 5px;
  margin: 20px;
}
main p {
  text-align: center;
  max-width: 800px;
}
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  width: 800px;
  margin: 20px 0;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 5px;
  margin-bottom: 10px;
}
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
body {
  font-size: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
}
/* Product section */
.product {
  display: flex;
  margin-bottom: 20px;
}

/* Product image */
.product img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid #333;
  margin-right: 20px;
}

/* Product body text */
.product .body {
  flex-grow: 1;
}