body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.card {
  text-align: center;
  margin: 10vh auto;
  width: 500px;
  height: 80vh;
  border: 1px solid #17a2b8;
}

.top-background {
  height: 30%;
  background-color: #17a2b8;
}

.content {
  height: 58%;
}

.socials {
  height: 12%;
  background-color: #17a2b8;
}

.img {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid white;
}

.name {
  margin: 5% 0 0 0;
  font-size: 1.3rem;
}

ul {
  display: inline-block;
  padding: 0;
  margin: 0 0 5% 5%;
}

li {
  list-style: url(../images/location.png);
}

hr {
  width: 85%;
  border: none;
  background-color: rgb(182, 182, 182);
  height: 1px;
}

button {
  margin: 2% 0;
  padding: 10px;
  color: #fff;
  font-weight: 100;
  border-radius: 3px;
  cursor: pointer;
}

.btn-follow {
  background-color: #28a745;
  border: none;
}

.btn-follow:hover {
  background-color: #26943f;
  transform: scale(1.05);
  transition: ease .2s;
}

.btn-send {
  background-color: #17a2b8;
  border: none;
}

.btn-send:hover {
  background-color: #1499ad;
  transform: scale(1.05);
  transition: ease .2s;
}

.content p {
  text-indent: 10%;
  text-align: justify;
  margin: 5% 5%;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
}

.logo {
  margin-top: 5%;
  margin-left: 10px;
}

.socials > a > img:hover {
  filter: invert(100%);
  transform: scale(1.3);
  transition: ease .5s;
}