.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    gap: 20px;
}

.project-item {
    width: 100%;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.867);
    flex: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-item:hover .project-item-image {
    transform: scale(1.1);
    filter: blur(5px);
}

.project-item-image {
    background-size: cover;
    background-position: 50%;
    width: 100%;
    height: 100%;
    transition: all .2s;
}

.project-title-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.project-title-text {
    padding: 10px;
}

a {
    opacity: 1;
}