.container {
    position: relative;
    width: 50%;
    margin: auto;
  }
  body {
    background-color: antiquewhite;
  }
  img {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-right: 28px;
  }
  h1 {
    text-align: center;
    font-size: 3rem;
    margin: -6px -8px;
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #008CBA;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
  }
  
  .container:hover .overlay {
    width: 100%;
  }
  
  .text {
    white-space: nowrap; 
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  h3 { 
    text-align: center;
  }
  .para p{ 
    font-size: larger;
    margin-top: 24px;
    margin-right: 24px;
  }
 
.para {
    display: inline-block;
    float: right;
}