.index-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 192px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: transparent;
  border-radius: 0;
}
.index-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 192px;
  max-height: 192px;
  box-shadow: none;
  object-fit: contain;
  background-color: transparent;
}
@media (max-width: 192px) {
  .index-img {
    max-width: 192px;
  }
  img {
    max-width: 192px;
    max-height: 192px;
  }
}
