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

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.container {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  transform-style: preserve-3d;
  min-height: 80vh;
  width: 25rem;
  border-radius: 30px;
  padding: 0rem 5rem;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
}
.photo {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo img {
  width: 15rem;
  z-index: 2;
  transition: all 1.5s ease-in-out;
  transition-duration: 400ms; 
  transition-property: background-color, transform;
  transition-timing-function: ease-in-out;
}

.photo:hover {
  transform: scale(1.2);
}
.info h1 {
  font-size: 3rem;

}
.info p {
  font-size: .8rem;
  padding: 2rem 0rem;
  color: black;
  font-weight: lighter;

}


