.error-404.not-found {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    text-align: center;
    min-height: calc(100vh - 200px);
}

.more-work {
    margin-top: 8rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.more-work > p {
    flex: 0 0 100%;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: 0ms;
}

.more-work__project,
.more-work__project:hover {
    width: auto;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--nc-tx-2);
}

.more-work__project:last-child {
    margin-right: 0;
}

.more-work__project p {
    margin-top: .5rem;
    transition: 0ms;
}

.more-work__project img {
    height: 340px;
    width: auto;
    display: flex;
    margin-bottom: 0;
}

@media screen and (max-width: 680px) {
    .more-work > p { 
        text-align: left;
        margin-bottom: 1rem;
    }

    .more-work__project,
    .more-work__project:hover {
        margin-right: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .more-work__project img {
        width: 100%;
        height: auto;
    }
}