section {
    min-height: 400px;
}

section .row h1 {
    font-family: 'Playfair Display', serif;
}

section .row .project,
section .row .project-github {
    height: 340px;
    width: 340px;
    margin: 12px;
    padding: 0;
    position: relative;
    display: inline-block;  border-radius: 5px;
}

section .row .project img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
}

section .row .project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 16, 69, 0.888);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

section .row .project:hover .overlay {
    opacity: 1;
    transform: scale(1);
}

section .row .project .overlay h5 {
    font-weight: 400;
}

section .row .project .overlay a {
    font-size: 35px;
}

section .row .project .overlay .icon a:hover i,
section .row .project .overlay .icon a:hover .text {
    color: rgb(84, 12, 30);
}

section .row .project .overlay .icon a {
    text-decoration: none;
}

section .row .project .overlay .icon .text {
    font-size: 13px;
    color: var(--white)
}

section .row .seeMore {
    height: 100%;
    width: 100%;
    background: rgba(226, 16, 69, 0.557);
    display: flex; 
    justify-content: center;
    align-items: center; 
    border-radius: 5px;
    text-align: center;
}

section .row .seeMore:hover {
    background: rgba(226, 16, 69, 0.888);
}

section .row .seeMore .icon {
    font-size: 70px;
    transition: 0.5s;
}

section .row .seeMore .icon:hover {
    transform: scale(1.1,1.1);
}

section .row .project-github a {
    text-decoration: none;
}