body {
  display: flex;
  flex-direction: column;
  min-height: 500vh;
  height: 100%;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.homepage {
  position: relative; 
  z-index: 1;  
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;       
  padding-top: 120px;
  padding-bottom: 100px;
}

.slogan {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
}

.search-bar {
  background-color: #363636;
  padding: 12px 24px;
  border-radius: 30px; 
  width: 800px; 
  max-width: 60%; 
  text-align: center;
  font-weight: bold;
  color: white;
  margin-bottom: 50px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  margin: 50px 0 70px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
  justify-content: center;
}

.home-card {
  background-color: #363636;
  width: 300px;
  height: 350px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  border-radius: 6px;
  transition: transform 0.3s ease;
  padding: 10px;
}

.home-card:hover {
  transform: scale(1.05);
  background-color: #3a3a3a;
}

.icon-container img {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.4em;
  margin: 0;
  color: #ffffff;
}

.card-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.card-images img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}


