
.church-card {
  padding: 5rem 2rem;
  background-color: #E9815C;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.church-card > h3,
.church-card > p {
  color: white;
  flex-basis: 100%;
}

.church-card > h3 {
  font-size: 25px;
  margin: 0;
  text-align: center;
  transition: all 0.3s;
}

.church-card > p {
  visibility: hidden;
  transition: all 0.3s;
  opacity: 0;
}

/*.church-card:hover {*/
/*  padding: 2rem;*/
/*}*/


.church-card:hover p {
  visibility: visible;
  opacity: 1;
}




