.recentwork {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--padding_size);

    margin-top: 50px;
    gap: 50px;
}

.recentwork .work {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}
.recentwork .work h1 {
    font-family: 'outfit bold';
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 10px 20px;

    position: relative;
}

.recentwork .work .before h1:nth-child(1) {
    background-color: rgba(175, 25, 25, 1);
    color: white;
}

.recentwork .work .after h1:nth-child(1) {
    background-color: rgb(25, 175, 38);
    color: white;
}


.recentwork .work .before,
.recentwork .work .after {
    width: 300px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.recentwork .work .before img,
.recentwork .work .after img{
    width: 100%;
}
