@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Poppins", sans-serif;
}
.image{
    position: relative;
    height: 150px;
    width:150px;
    border-radius: 50%;
    background-color:darkblue;
    padding: 3px;
}
.image .me-img{
height: 100%;
width:100%;
object-fit: cover;
border-radius: 50%;
border:3px solid #fff
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.profile-card{
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius:10%;
    padding: 25px;
    box-shadow: 0 5px 10px #0f0c0c;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.profile-card .text-data{
    display: flex;
    flex-direction:column ;
}
.name {
    font-size: 24px; 
    color: rgb(250, 8, 133);
  }
  .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:39px;
    border-radius:50%;
    background-color:rgb(250, 250, 250) ;
    color: #0e0d0d;
    text-decoration: none;
    font-size: 18px;
    padding: 1px;
    border-color: blue;
  }
  .buttons .button{
    color: #fdfafa;
    background-color: rgb(13, 12, 16);
    border-radius: 10vh;
    height: 5vh;
    padding: 8px 10px;
    border: none;
    
  }
  .buttons .button:hover{
    background-color: rgb(213, 50, 192);
  }
  .media-buttons .link:hover{
    background-color: rgb(213, 50, 192);
  }
  .analytics .data{
    display: inline-block;
    align-items:center;
    color: #0e0d0d;
    padding: 0 20px;
    border-right:2px solid;
  }