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

body {
  height: 100vh;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.card {
  width: 350px;
  height: 500px;
  perspective: 1000px;
}
.card:hover {
  z-index: 10;
}

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

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

.glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transition: all 0.15s ease-out;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.204),
    transparent
  );
}
