#page-content{
    width: 100%;
}

.project-list{
    margin: 0 auto;
    margin-top: 10vh;
    width: clamp(320px, 50%, 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.project-list>.navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing) * 2)
}

.project-list>.surface{
    min-height: 60vh;
    position:relative;
}

.project-list .skill{
    border-radius: calc(25% / 4 );
    background-color: rgba(0,0,0,0.20);
    padding: 12px;
    filter: var(--shadow);
    color: var(--text-c);
}

.project-list table{
    border-spacing: 1.25em;
}

.project-list table thead{
    font-size: 1.75em;
    font-weight: bolder;
}

.project-list table thead td{
    border-bottom: 3px solid var(--text-c);
}

.project-list-container{
    flex-direction: column;
    margin: 0;
}

.project-list .project-row{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 8px dotted var(--bg-c);
    padding: var(--spacing) 0;
}

.empty-project-list {
    display: flex; /* Enables flexbox */
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    
    position: absolute; /* Positions relative to `.surface` */
    top: 0;
    left: 0;
    width: 100%; /* Ensures it spans the full width */
    height: 100%; /* Ensures it spans the full height of `.surface` */
    
    text-align: center;
    overflow: hidden; /* Prevents content from overflowing */

    margin: 0 !important;
}