body{
  background-color: #E0E0E0;
  font-family: "Caveat Brush", cursive;
  color: #006064;
}
p{
  font-family: "Caveat Brush", cursive; 
  color: #006064;
}
div.gallery {
  border: 2px solid black;
}

div.gallery:hover {
  border: 2px dashed #00838F;
}
.content{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  
}
div.gallery img {
  width: 100%;
  height: auto;
  background-color: white;
}

div.desc {
  padding: 20px;
  text-align: center;
  background-color: white;
  margin-top: -5px;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}