.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  width: 350px;
  background: white;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 2px 20px #d7dfe2;
  position: relative;
  margin: 2rem;
  position: relative;
  transition: 250ms all ease-in-out;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 40px #d7dfe2;
}

.card-header-image {
  position: absolute;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  
}

.card-header p {
  position: absolute;
  top: 20px;
  left: 0px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: white;
  padding: 1rem 1.7rem 1rem 1rem;
  background: #8529ce;
  border-radius: 0 2rem 2rem 0 ;
  z-index: 1;
  font-weight: bold;
}

.card-body {
/*   display: flex;
  flex-direction: column;
  padding: 1.2rem 1.5rem; */
  margin: 22rem 2rem 1rem 2rem;
}

.hashtag {
  font-size: 1.4rem;
  color: #4d97b2;
  font-weight: 500;
}

.heading {
  font-size: 2.4rem;
  color: #414b56;
  line-height: 1;
  margin: 1.5rem 0 1.2rem 0;
}

.text {
  font-size: 1.4rem;
  color: #616b74;
}

.card-profile {
  display: flex;
  align-items: center;
  margin: 3rem 0 1rem 0;
}

.card-profile-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.card-profile-info {
  margin-left: 1.5rem;
}

.profile-name {
  font-size: 1.4rem;
  color: #414b56;
}

.profile-followers {
  font-size: 1.3rem;
  color: #616b74;
}