* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  background-color: antiquewhite;
  perspective: 500px;
}
.container {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.user-data {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
}
.all-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.img-block {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.face {
  position: absolute;

  width: 100%;
  height: 100%;
}
.img-block .back {
  line-height: 150px;
  background-color: #000;
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  backface-visibility: hidden;
}
.img-block.clicked {
  transform: rotateY(180deg);
}

.img-block .front {
  background-color: azure;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  /* backface-visibility: hidden; */
}
.img-block .front img {
  max-width: 50%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(14, 14, 14, 0.86);
}
.overlay span {
  color: #fff;
  background-color: orange;
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
}
