.image-text-content-block{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  align-content:center;
  margin:0px auto;
  background-color:var(--MainColor);
}
.image-text-content-block + .image-text-content-block{
  margin-top:20px;
  margin-bottom:20px;
}

.image-text-content-block p{
  flex:1;
  margin:0 0 0 0;
}
.image-text-content-block p:first-child{
flex:2;
order:1;
}
.image-text-content-block .prominent-para a{
  display:block;
  padding:20px;
  font-size:1.5rem;
  text-align:center;
  text-decoration:none;
  color:#FFF;
}
@media screen and (min-width:768px){
  .image-text-content-block{
    flex-direction:row;
    background-color:#333;
    transition:background-color 0.2s ease-in-out;
  }
  .image-text-content-block:hover{
    background-color: var(--MainColor);
  }
  
  .image-text-content-block p:first-child{
  flex:2;
  order:0;
  }
  .image-text-content-block .prominent-para a{
    padding:40px;
    font-size:2.5rem;
  }
}
