#portfolio {
    font-size: 22px;
}

h1 {
    margin: 5px;
}

#projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.project {
    max-width: 380px;
    margin: 20px;
}

.project a {
    width: 380px;
    height: 214px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.project a img {
    transition: filter .5s,transform .5s;
    width: 380px;
    height: 214px;
}

.project .date {
    color: #999999;
}

.project .title {
    font-size: 1.2em;
}

.project h5 {
    color: #bbb;
    font-size: .7em;
}

.project p {
    font-size: .7em;
    line-height: 1.4em;
    margin-top: 12px;
    color: #bbbbbb;
}

.project a i {
    transition: opacity .5s;
    color: white;
    opacity: 0;
    position:absolute;
    text-align: center;
}

.project a:hover i {
    opacity: 1;
}

.project a:hover img {
    filter: blur(5px);
    transform:scale(1.1);
}

@media only screen and (max-width: 768px) {
    .project a {
        width: 320px;
        height: 180px;
    }

    .project a img {
        width: 320px;
        height: 180px;
    }
}