* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.cards {
  display: flex;
  gap: 10px;
  padding: 40px 20px;
}

.card {
  position: relative;
  width: 246px;
  height: 296px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #131313;
  color: #fff;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.45s ease;
}

.card:hover .num {
  opacity: 0.4;
}

.copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
}

.copy h3 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #141414;
  margin-bottom: 7px;
}

.copy p {
  font-size: 12px;
  line-height: 1.45;
  color: #8f8f8f;
}

.pixels {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  pointer-events: none;
}

.pixels div {
  opacity: 0;
  background-repeat: no-repeat;
}
