#c1 {
  margin-top: 100px;
}
#c2 {
  display: flex;
  flex-direction: row;
  width: 90%;
}
#img {
  display: flex;
  justify-content: center;
  align-items: center;
}
#img > img {
  height: 500px;
  padding: 30px;
  width: auto;
}
#p {
  padding: 30px;
}
#p > p {
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  #c2 {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  #img > img {
    height: auto;
    padding: 30px;
    width: 90%;
  }
  #p > p {
    text-align: center;
  }
}