div.projects-wrapper {
    flex-grow: 1;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

ul.project-list {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

ul.project-list li {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
}

ul.project-list li a {
    width: 8rem;
    height: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    text-align: center;
}

ul.project-list li a span {
    max-width: 7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

ul.project-list li a img {
    height: 5rem;
    width: 5rem;
    border-radius: 5px;
    margin-bottom: 0.8rem;

    transition: width 0.2s, height 0.2s;
}

ul.project-list li a:hover img {
    height: 6rem;
    width: 6rem;
}

@media screen and (max-width: 1000px) {
    ul.project-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 460px) {
    ul.project-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
