#c1 {
  display: flex;
  flex-direction: column;
  margin: 100px 0 0 0;
  align-items: center;
  justify-content: center;
}
h1 {
  font-size: 30px;
}
#c1-1 {
  padding: 10px;
  margin: 10px;
  border-radius: 20px;
  border: solid black 1px;
  box-shadow: 2px 2px 5px black;
  width: clamp(fit-content, 85%);
  text-align: center;
}
#c1-2 {
  padding: 10px;
  margin: 10px;
  border-radius: 20px;
  border: solid black 1px;
  box-shadow: 2px 2px 5px black;
  width: 85%;
}
#c1-2 > p {
  padding: 10px;
}
#c1-2 > h3 {
  padding: 10px;
}
#imager {
  max-height: 200px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 20px;
  }
  #c1-2 > p {
    padding: 5px;
  }
  #c1-2 > h3 {
    padding: 5px;
  }
  #imager {
  width: 80vw;
}
}
#images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
}
div > img {
  padding: 10px;
}
@media screen and (max-width: 850px) {
  #images {
    grid-template-columns: 1fr;
  }
}