* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Roboto, Helvetica, Arial, sans-serif; */
}
.tag {
  display: flex;
  cursor: pointer;
}
.tag a {
  display: block;
  width: 68px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(95, 99, 104);
  border: 1px solid rgb(207, 212, 219);
  text-decoration: none;
}

.tag a:hover {
  background-color: rgb(245, 245, 245);
}

.tag a:active {
  background-color: rgb(224, 224, 224) !important;
}