#projects {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0px 0px 5px 1px #dddddd;
    width: 45%;
}

.project img {
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .project {
        width: 100%;
    }
}

.project-title {
    display: flex;
    align-items: baseline;
    padding: 3px;
    text-decoration: none;
    color: inherit;
    font-size: 1.3em;
}

.project-title img {
    max-height: 0.7em;
    margin-left: 5px;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.8em;
}

.keyword {
    padding: 5px;
    margin: 0 2px 0;
    border-radius: 5px;
    color: rgb(245, 232, 230);
    background-color: rgba(170, 49, 28, 0.789);
    text-align: center;
}

.snapshot {
    margin-top: 10px;
}