.link-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.link-list li {
    margin: 1rem;
    flex-grow: 1;
    display: flex;
    text-align: center;
}

.link-list a {
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
    flex-grow: 1;
    transition: 0.2s;
}

.link-list a:hover {
    text-decoration: underline;
    box-shadow: 10px 10px var(--shadow);
    border-top: 1px solid var(--highlight-hover);    
    border-left: 1px solid var(--highlight-hover);    
}
