
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body{
  height: 100vh;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  
  background-color: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.profile-card::before{
  content: "";
  height: 140px;
  width: 100%;
  background-color: #4070f4;
  position: absolute;
  top:0;
  border-radius: 24px 24px 0 0;
}


.image{
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #4070f4;
  padding: 3px;
  margin-bottom: 10px;
}

.image .profile-image{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.profile-card .text-data{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-data .name{
  font-size: 15px;
  font-weight: 400;
}

.text-data .job{
  font-size: 15px;
  font-weight: 400;
}

.profile-card .media-buttons{
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.media-buttons .link{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  font-size: 17px;
  color: #f4f4f4;
  margin: 0 8px;
  text-decoration: none;
}

.profile-card .buttons{
  display: flex;
  
  margin: 25px;
}

.buttons .button{
  cursor: pointer;
  color: #fff;
  padding: 8px 24px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 24px;
  background-color: #4070f4;
  border: none;
  transition: all 0.5s ease;
}

.buttons .button:hover{
  background-color: #0e4bf1;
}

.profile-card .analytics{
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.analytics .data{
  display: flex;
  align-items: center;
  color: #333;
  padding: 0 20px;
  border-right: 2px solid #e7e7e7;
}

.data i{
  font-size: 18px;
  margin-right: 6px;
}

.analytics .data:last-child{
  border-right: none;
}

