* {
  margin: 0;
  padding: 0;
}
body {
  background: rgb(186, 197, 191);
  font-family: sans-serif;
}

.container {
  height: 160px;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.back {
  width: 100%;
  height: 100%;
  background-color: rgb(219, 219, 219);
  border-radius: 10px;
  position: absolute;
  z-index: 1;
  transition: all 0.5s ease-in-out;

  padding: 0;
}
.container:hover .back {
  transform: translatex(245px);
}

.front {
  height: 100.2%;

  width: 250px;
  background: rgb(126, 93, 116);
  position: absolute;
  border-radius: 10px 0 0 10px;
  z-index: 100;
}
.front img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 65px;
}
.front h2 {
  text-align: center;
  color: #fff;
  top: 125px;
  left: 20px;
  position: absolute;
  font-size: 25px;
  font-family: arial;
}
.back h2 {
  padding: 10px;
  color: rgb(75, 74, 74);
}
.back p {
  position: absolute;
  padding: 10px;
  color: rgb(75, 74, 74);
  font-weight: 400;
}
