body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
}
h1 {
  text-align: center;
  padding: 20px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  justify-content: center;
}
.tile {
  width: 200px;
  height: 200px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.tile:hover {
  transform: scale(1.05);
}
.tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

 #consent-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #333;
      color: white;
      padding: 15px;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 9999;
    }

    #consent-banner button {
      background: #00cc66;
      border: none;
      color: white;
      padding: 8px 12px;
      cursor: pointer;
      border-radius: 4px;
      font-weight: bold;
    }

    #consent-banner button:hover {
      background: #00b359;
    }

    @media (max-width: 600px) {
      #consent-banner {
        flex-direction: column;
        text-align: center;
      }
    }
