.tag {
    background-color: #ffffff1c;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    user-select: none;
    cursor: pointer;
    color: #ffffffd3;
    font-size: smaller;
}

.tag:hover {
    background-color: #ffffff3c;
}

.line {
    background-color: #ffffff1c;
    width: 100%;
    padding: 1px;
}

@media only screen and (max-width: 600px) {
    .tag {
        width: 110%;
    }
}