
.dq-logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 100%;
  height: auto;
}

#dq-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

#dq-examples img {
  width: 100%;
  max-width: 256px;
  height: auto;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

#dq-examples img:nth-child(1) {
  transform: skew(-5deg) rotate(-1deg);
}

#dq-examples img:nth-child(2) {
  transform: skew(5deg) rotate(1deg);
}

#dq-examples img:nth-child(3) {
  transform: skew(-3deg) rotate(-2deg);
}

#dq-examples img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.creator-designation {
  text-align: center;
  font-size: 1em;
  color: #555;
  margin-top: 30px;
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

