.shome-container {
text-align: center;
width: 100%;
margin: 0 auto;
margin-top: 40px;
}
.shome-container .shome-image {
position: relative;
display: inline-block;
margin: 10px;
width: 22vw;
height: 22vw;
text-align: center;
overflow: hidden;
max-height: 22vw;
vertical-align: top;
word-wrap: break-word;
}
.shome-overlay  {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all 1.5s ease-in-out;
-moz-transition: all 1.5s ease-in-out;
-o-transition: all 1.5s ease-in-out;
-ms-transition: all 1.5s ease-in-out;
transition: all 1.5s ease-in-out;
opacity: 0;
}
.shome-container .shome-image img {
width: 22vw;
height: 22vw;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, .7);
object-fit: cover;
object-position: 50% 50%;
}
.shome-container .shome-image:hover .shome-overlay {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
-moz-box-shadow: inset 0 600px 1px -1px #000;
-webkit-box-shadow: inset 0 600px 1px -1px #000;
box-shadow: inset 0 600px 1px -1px #000;
opacity: 0.7;
}
.shome-title, .shome-description {
position: absolute;
text-align: center;
padding: 10px;
width: 100%;
display: none;
color: #fff;
}
.shome-container .shome-image:hover .shome-title,
.shome-container .shome-image:hover .shome-description {
display: block;
}
.shome-title {
top:20%;
font-size: 25px;
font-weight: bold;
}
.shome-description {
top: 40%;
font-size: 15px;
font-style: italic;
}