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

body {
  background-color: rgb(0 0 0);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  gap: 20px;
}

.card {
  width: 200px;
  height: 300px;
  perspective: 1000px;
}

.card:hover {
  z-index: 10;
}

.content-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.15s ease-out;
  background-color: black;
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transition: all 0.15s ease-out;
  border-radius: 10px;
  mix-blend-mode: hard-light;
  background: radial-gradient(
    circle at 50% 0%,
    rgb(184, 196, 211),
    transparent
  );
}






