* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #e3e6e6;
}

.navbar {
  background-color: #131921;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}
.logo span {
  color: orange;
}

.search-box {
  display: flex;
  flex: 1;
  margin: 0 20px;
}
.search-box input {
  flex: 1;
  padding: 8px;
  border: none;
}
.search-box button {
  padding: 8px;
  background: orange;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
  text-align: center;
  font-size: 14px;
}
.cart {
  font-size: 18px;
}

a{
    text-decoration: none;
    color: #e3e6e6;
}

.hero {
  background-image: url(amazon_backgrn.jpg);
  background-size: cover;
  height: 750px;
  display: flex;
  align-items: first baseline;
  justify-content: center;
  color: white;
  font-size: 24px;
  padding: 20px;
  font-weight: bold;
}

p{
    font-style: italic;
    font-size: larger;
    color: bisque;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;

}
.product {
  background: white;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
}

h4{
    font-style: oblique ;
    color: black;
    font-weight: 700;

}

.product img {
  width: 100%;
  height: 400px;
}

footer {
  background: #131921;
  color: white;
  text-align: center;
  padding: 10px 0;
}
