@import url("https://fonts.googleapis.com/css2?family=Carter+One&display=swap");

.gallery {
  border: 1px solid #ccc
}

.gallery:hover {
  border: 1px solid #777
}
  
.gallery:img {
  width: 100%;
  height: auto;
}

h2 {
  font-family: Carter One;
  background-color: black;
  -webkit-text-fill-color: #000000;
  -webkit-text-stroke: 0.1vw #ffb7c5;
}

.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;
}