body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1F3A5F;
  color: #000000;
}

h1, h2 {
  text-align: center;
}

.container {
  padding: 16px;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #30f36b;
  color: rgb(62, 243, 62);
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

.product-card {
  background: rgb(219, 255, 91);
  padding: 10px;
  border-radius: 10px;
}

.img-box {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card p {
  text-align: center;
  font-weight: bold;
  margin: 8px 0 0;
}