body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e2f;
  color: white;
}

.container.nav {
  background-color: #1e1e2f;
}

nav a {
  color: white !important;
  margin-left: 20px;
  text-decoration: none;
}

.home {
  background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
}

.search input {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
}

.search button {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  background-color: #00aaff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.card {
  color: white;
  background-color: #2a2a40;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
}

.card img {
  width: 64px;
  height: 64px;
}

.details {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

