.avatars {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.left-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(45deg);
}

.right-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(315deg);
}

body {
  font-family: Arial, sans-serif;
  margin: 40px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.product-catalogue ul {
  list-style: none;
  padding: 0;
}

.product-catalogue ul li {
  margin-bottom: 10px;
}

.button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
}

.hero {
  text-align: center;
}
