@import "variables.css";

.tag-list {
    display: flex;
    flex-wrap: wrap;
}

.tag-list a {
    margin: 0 8px 8px 0;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--bg-primary-contrast);
    color: var(--bg-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: large;
    font-weight: 600;
}

.tag-list a:hover {
    background-color: var(--bg-primary);
    color: var(--bg-primary-contrast);
}