body {
  font-family: Arial;
  background: #f4f7fb;
  text-align: center;
}

h1 {
  margin: 20px;
}

.search-box {
  margin: 20px;
}

input {
  padding: 10px;
  width: 250px;
}

button {
  padding: 10px;
  margin: 5px;
  cursor: pointer;
  background: #007bff;
  color: white;
  border: none;
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.details {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.tittle {
font-size: 50px;
font-family:'Courier New', Courier, monospace;
color: brown;
}

.view-btn {
  margin-top: 10px;
  padding: 8px 12px;
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.view-btn:hover {
  background: #218838;
}

.tite {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color:rgb(12, 4, 4);
}

.footer {
  background: #111;
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: #0a84ff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: #aaa;
}