@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Jost:ital,wght@0,100..900;1,100..900&family=Mozilla+Text:wght@200..700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;

}

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


}

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


}
.profile-card:before{
      height: 13vh;
    max-width: 675px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    background-color: blueviolet;
    border-radius: 24px 24px ;
}



.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: blueviolet;
    padding: 3px;
   box-shadow: 0 5px 10px  rgba(0, 0, 0, 1.7) ;
}

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

.textData{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgb(86, 3, 94);
}

.profile-card .textData .name{
    font-size:2.7em;
    font-weight: 500;
     color: rgb(86, 3, 94);
}

.profile-card .textData .job{
     font-size: 1.2em;
    font-weight: 400;
     color: rgb(80, 41, 83);

}

 .profile-card .meadiaButton{

    display: flex;
    align-items: center;
  

 }
 .meadiaButton{
    margin-top: 25px;
        width: 100%;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
 }


 .meadiaButton .link{
     display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size:1.7m;
    border-radius: 50%;
    background-color: blueviolet;
    text-decoration: none;
    margin: 8px; 
     height: 100%;
       width: 100%;
       border-radius: 10px;
       padding: 12px;
       font-size: 2em;
     
 }

  .meadiaButton .link .mastext{
    font-size: 0.7em;

  }

 .profile-card .buttons{
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: space-around;

 }

 button{
    margin-right:  20px;
    padding: 8px 24px;
    background-color: blueviolet;
    color: antiquewhite;
    font-size: large;
    font-weight:400;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    


 }

 button:hover{
    background-color: rgb(100, 3, 190);
 }

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

 .profile-card .analys .data{

     display: flex;
    align-items: center;
    color: rgb(44, 44, 44);
    padding: 0 24px;
    border-right: 2PX solid rgb(160, 157, 157);


 }

  .profile-card .analys .data:last-child{
    border-right: none;
 }

@media (max-width: 675px) {
    .profile-card:before{
        
        height: 160px;
    }
    .meadiaButton{
        
        margin-top: 25px;
        width: 100%;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
       
    
    }
    .mastext
    .textData{
        margin-top: 20px;
    }
    .meadiaButton .link{ 
    
        height: 100%;
       width: 100%;
       border-radius: 10px;
       padding: 12px;
       font-size: 2em;
       
    }

    
}