@import url('https://fonts.googleapis.com/css2?family=Hind:wght@500&display=swap');
body{
	font-family: "Hind", sans-serif;
	font-weight: 500;
	font-size: 10px;
	color: black;
	text-decoration: none;
}
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  height: 30px;
  padding: 3px 10px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 4px 4px;
  float: left;
  width: 24%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}