
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Arial, sans-serif;
  background-color:rgb(76, 190, 243);
  color: #333;
  padding: 20px;
  line-height: 1.6;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  margin: 30px 0 15px;
  color: #34495e;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
}

.product-card img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.product-card p {
  font-weight: bold;
  margin-bottom: 10px;
}


button {
  background-color: #1f78b4;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}


footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background-color: #2c3e50;
  color: white;
  border-radius: 5px;
}
