@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: #ededff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile {
  width: 90%;
  max-width: 320px;
  background: #32384f;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  color: #fff;
}

.top-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.fa-heart {
  margin-right: 10px;
}

.user-img {
  width: 100px;
  border-radius: 50%;
}

.profile h2 {
  font-weight: 500;
  font-size: 22px;
  margin: 20px 0 8px;

}
.profile p {
  font-size: 12px;
}

.profile .btn {
  text-decoration: none;
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  /* background: -webkit-gradient(linear, left top, right top, color-stop(0%, transparent), color-stop(50%,#fff), color-stop(100%,transparent)); /* Chrome, Safari4+ */
  /* background: -webkit-linear-gradient(left, transparent 0%,#fff 50%,transparent 100%); Chrome10+, Safari5.1+ */
  /* background: -moz-linear-gradient(left, transparent 0%,#fff 50%,transparent 100%);    FF3.6+ */
  /* background: linear-gradient(to left, transparent 0%,#fff 50%,transparent 100%);      W3C */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, #8d68c5),
    color-stop(100%, #e34494)
  );
  display: inline-block;
  margin: 35px 0;
  font-size: 15px;
}

.social-media {
  display: flex;
  justify-content: space-around;
}

.social-media img {
  width: 60px;
  border-radius: 50%;
}

.social-media h3 {
  font-weight: 500;
  font-size: 16px;
  margin: 5px 0;
}

.social-media div {
  margin: 10px 0 30px;
}
