
.title{
    font-size: 36px;
}
.description{
    width: 70%;
    line-height: 20px;
}

.table-sorter{
    width: calc(20% - 10px);
    height: 55px;
    margin: 5px;
}
.table-sorter-icon{
    width: 50%;
    margin:auto;
}
.table-sorter-text{
    display: none;
}


.table-row{
    height: 100px;
    background-color: var(--background2);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
    width: calc(100% - 50px);
    margin: 25px 0;
    transition: all 0.5s
}
.project-thumbnail{
    height: 75px;
    width: 75px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.project-info-container{
    flex-direction: column;
    width: unset;
    align-items: initial;
    text-align: left;
  }
.project-text{
    margin-left: min(25px, 5vw);
    height: unset;
    color: white;
    max-width: unset;
}
.project-name{
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
}
.project-description{
    display: none;
}
.project-tags-container{
    margin-top: 15px;
    margin-left: min(25px, 5vw);
    text-align: left;
}

.noProjects{
    display: none;
    font-size: 14px;
}