body {
  font-family: sans-serif;
  background-color: #f9fafb;
  margin: 0;
  padding: 2rem;
  text-align: center;
}
.title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: scale(1.05);
}
.card-logo {
  font-size: 2rem;
}
.card-name {
  font-weight: bold;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.card-slogan {
  font-size: 0.75rem;
  color: gray;
}


.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
