#about {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#about > h1 {
    font-weight: 400;
}

.project {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    border-top: 1px solid rgb(224, 224, 224);
}

.project_name {
    width: 30%;
    flex-shrink: 0;
}

.project_name > a {
    color: var(--accent-color);
    font-weight: lighter;
    text-decoration: none;
}

.project_name > a:hover {
    color: var(--accent-color);
}

.project_description {
    flex-grow: 1;
    padding-left: 20px;
}

@media only screen and (max-width: 650px) {
    .project {
        flex-direction: column;
    }

    .project_name {
        width: 100%;
    }

    .project_description {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }
}