@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Unbounded&display=swap");

body {
  box-sizing: border-box;
  font-family: Arial;
  margin: 0;
  background:rgb(141, 139, 161);
}

div.gallery {
  border: 1px solid #f8f7f7;
  background-color: #040630;
  
}

div.gallery:hover {
  border: 1px solid #777;

}

div.gallery img {
  width: 100%;
  height: 300px;
}

div.desc {
  padding: 15px;
  text-align: center;
  color: goldenrod;
}

.responsive {
  padding: 10px 4px;
  width: 30%;
}
.main {
 
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.hedar {
  padding: 2px;
    font-size: 40px;
    text-align: center;
    background-color: #040630;
    color: gold;
  
}
@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 3px 3px;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
