* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  max-width: 100%;
  /* border: 1px solid grey; */
}
nav {
  text-align: center;
  display: flex;
  justify-content: space-between;
}

/* .link {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
} */

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: black;
  opacity: 100%;
}
img {
  border-radius: 20px;
  object-fit: cover;
}

.box {
  width: 30%;
  text-align: center;
  background-position: center;
  font-size: 2rem;
  color: #c98986;
}
.responsive {
  width: 100%;
  height: 300px;
}

@media (max-width: 850px) {
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .box {
    font-size: 1.5rem;
    width: 60%;
  }
  .responsive {
    width: 50;
    margin: 5%;
  }
}
