body {
  background: #000;
  color: #eee;
}
a {
  color: inherit;
  text-decoration: none;
}
.items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.item {
  position: relative;
  padding: 16px;
  text-align: center;
  opacity: 0.8;
  transition: 0.1s opacity, 0.1s scale;
}
.item>* {
  position: relative;
}
.item:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.267);
  border-radius: 16px;
  background: rgba(255,255,255,0.067);
  content: '';
  opacity: 0;
  transition: 0.1s opacity, 0.1s scale;
  scale: 0.9;
}
.item:hover {
  opacity: 1;
}
.item:hover:before {
  opacity: 1;
  scale: 1;
}
.item:active {
  scale: 0.95;
}
