.container {
max-width: 1125px;
margin: 0 auto;
}
.works-container {
min-height: 100vh;
margin-top: 70px;
}
.works-container .container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.works-container a {
margin: 12px auto;
display: flex;
}
.work {
width: 345px;
height: 277px;
box-shadow: 0 5px 30px rgba(0, 0, 0, .30)
}
.work img {
cursor: pointer;
width: 100%;
height: 200px;
transition: 0.45s all;
}
.work img:hover {
background: #111;
opacity: 0.7;
}
.work__description {
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
height: 77px;
padding: 5px;
color: #fff;
text-align: center;
font-size: 17px;
transition: 0.4s;
}
.work__description:hover {
color: #2C64E0;
}