body {
  font-family: 'Poppins', sans-serif;
  background-color: #151111;
  color: #ddd;
  width: max(600px, 100%);
}

#title {
  font-size: 1.5em;
  text-align: center;
}

body p {
  max-width: 600px;
  text-align: center;
  margin: auto;
  text-decoration: none;
}

.person {
  display: flex;
  align-items: center;
  margin: 10px;
  padding: 10px;
  border-radius: 110px;
  max-width: 600px;
  height: 110px;
  margin: auto;
  transition: 0.2s;
}

.person img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 5px;
}

.person:hover {
  box-shadow: 0 0 20px #666;
  transition: 0.2s;
}

.person p {
  margin-left: 20px;
}

.person i {
  margin-left: auto;
  margin-right: 40px;
  width: 30px;
  scale: 1.5;
}