*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color:#19A1AD;
}
.fullcontainer{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
 
}

.fullcontainer .profile-box{
    
    width:350px;
    height: 350px;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
    z-index: 1;
}
.fullcontainer .profile-box svg{
    border-radius: 20px 20px 0 0;
}
.fullcontainer .profile-img img{
    border-radius: 50%;
    position: relative;
    top:-50px;
    left:120px;
    border: 5px solid white;
}
.fullcontainer .profile-name{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
    margin-top: -40px;
}


.fullcontainer .profile-name .name{
    font-family: sans-serif;
    font-size: 20px;
    font-weight: bold;

}
.fullcontainer .profile-name .name span{
    font-family: sans-serif;
    font-weight: lighter;
    
    
}
.fullcontainer .profile-name .state{
    font-size: small;
    font-family: sans-serif;
   font-weight: 600;
}
.fullcontainer .stats{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px ;
    width:100%;
    margin-top: 10px;
    border-top: 1px solid grey;
}
.fullcontainer .stats .number{
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
}
.fullcontainer .stats .text{
    font-family: sans-serif;
}
.fullcontainer .top{
    width:800px;
    height: 800px;
    background:linear-gradient(90deg,#19A1AD,white);
    border-radius: 50%;
    transform: translate(-200px,-300px);
    opacity: 0.7;
    
  
  
}
.fullcontainer .bottom{
    width:900px;
    height: 900px;
    background:linear-gradient(90deg,#19A1AD,white);

    border-radius: 50%;
    transform: translate(200px,200px);
   
  
}
