<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.img1{
	margin-left: auto;
	margin-right: auto;
}
.img1_div{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-bottom:1em;
}
  .img1 &gt; img{
    object-fit: cover;
    height:200px;
    max-width:100%;
  }
figcaption{
  text-align:center;
}
  @media only screen and (max-width: 600px) {
  .img1_div{
    grid-template-columns:none;
    grid-template-rows:repeat(3,1fr);
  }
   .img1 &gt; img{
     width:250px;
     height:200px;
   }
  }
</pre></body></html>