.card {
  width: 320px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: all 0.25s ease;
}

.card:active {
  transform: translateY(2px);
}

.card-page-title {
  font-size: 20px;
  font-weight: bolder;
}

.card-page:active {
  transform: translateY(2px);
}
