#friends-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color:var(--white);
}

.friend {
  display: block;
  border: solid 2px var(--black);
  border-radius: 2rem;
  margin: 1rem;
  padding: 1rem;
  height: 16rem;
  text-decoration: none;
  background-color:var(--ltblue);
  color:black;
  font-family:'indie flower';

}
.friend:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
img {
  border-radius: 100%;
  height: 10rem;
  width: 10rem;
}

h2 {
  margin-top: 1rem;
  text-align: center;
}
