.friend-list {
  background-color: black;
  padding: 20px;
  color: white;
  text-align: center;
}

.friend-list h1 {
  margin-top: 0;
}

.friend {
  display: inline-block;
  margin: 10px;
box-sizing: border-box;
  text-align: center;
}

.friend img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.friend p {
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
}

.friend p:hover {
  text-decoration: underline;
}
