style.css

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e63946;
  padding: 3px 30px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-links a:hover {
  border-bottom: 2px solid white;
}

.social-icons a {
  color: white;
  margin-left: 10px;
  font-size: 18px;
}


.hero {
  background: url("Images/benner.jpg") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 5px black;
}

.Products {
  background: #f4f4f4;
  padding: 2px 20px;
  text-align: center;
}

.Products h2 {
  background: #e76f51;
  color: white;
  padding: 15px;
  margin-bottom: 30px;
}

.Products-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 300px;
  padding: 15px;
}
.card > img{
  width: 300px;
  height: 300px;
}