#ProjectsContainer
{
    width: 80%;
    margin-bottom: 40px;
}

#ProjectsContainer .row
{
    padding: 5px;
}

.ProjectInfo
{
    height: 550px;
    min-width: 250px;
    max-width: 425px;
    margin: 60px;
    background-size: cover;
    padding: 10px;
    color: white;
    margin: auto;
    background-position: center;
    -webkit-filter: brightness(100%);
    -moz-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ProjectInfo:hover
{
    -webkit-filter: brightness(85%);
    -moz-filter: brightness(85%);
    filter: brightness(85%);
     -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;  
}

#ProjectsContainer a, #ProjectsContainer a:hover
{
    text-decoration: none;
    width: 100%;
}