.profiles {
  margin-top: 12%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-bottom: 140px ;
}
.card {
  /* Add shadows to create the "card" effect */
  width: 350px;
  height: 500px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  margin: 25px;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.card_container {
  width: 100%;
  height: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}
.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  margin-left: 35%;
  margin-top: 50%;
  float: left;
  border-color: white;
  border-width: 4px;
  border-style: solid;
}
.name {
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
.info {
  padding: 10px 25px 10px 25px;
  text-align: justify;
}
