/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0c10;
  color: #fff;
  line-height: 1.6;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  color: #f39c12;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.card {
  background: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.card img {
  width: 80%;
  height: auto;
  display:block;
  align-content: center;
}

.card:hover {
  transform: scale(1.03);
}

.btn {
  display: inline-block;
  padding: 8px 12px;
  margin: 10px 0;
  background-color: #f39c12;
  color: #000;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #bbb;
}
