body {
  font-family: 'Poppins', sans-serif;
  padding: 40px;
  background: #000000;
  color: #222;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color:white;
}

input, select {
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  margin-right: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  object-position: top;
}

.card h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #111;
}

.stack {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.tags {
  margin: 10px 0;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  margin: 5px 5px 0 0;
  font-size: 13px;
  border-radius: 999px;
  background-color: #eee;
  color: #333;
}

.tag.orange { background: #ff7043; color: white; }
.tag.black { background: #333; color: white; }
.tag.blue { background: #42a5f5; color: white; }

.card a {
  display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 10px 16px;
    background: transparent;
    color: black;
    font-weight: 600;
    border: 2px solid;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.card a:hover {
      background: black;
    color: white;
}

.lb-data .lb-caption {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

div#pagination {
    
    justify-content: center;
    display: flex;
}

b {
    color: black;
}

html, body {
    width: 100%;
    
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
.card a {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.grid {
    grid-template-columns: repeat(1, 1fr);
}
div#pagination button {
    padding: 10px !important;
}
}
@media only screen and (max-width: 600px) {
body {
    padding: 10px !important;
    margin: auto !important;
}
h1 {
    font-size: 25px;
}
input, select {
    margin: 10px 0;
    width: 100%;
}
div#pagination button {
    padding: 5px !important;
    margin: 0 1px !important;
}
}
