.profile-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    max-height: 100vh;
    transition-duration: 0.5s;
    color: rgb(36, 35, 35);
    font-size: 16px;
}

.profile-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 280px;
    box-shadow: 0px 0px 50px grey;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;      
    position: relative;
    z-index: 100;
    border-radius: 25px;
}

.top{
    /* background-color: orange; */
    background: linear-gradient(rgba(255, 166, 0, 0.442),rgba(255, 166, 0, 0.442)), url("Xender\\DSC_0660.JPG");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px; 
    z-index: -1;
    border-radius: 20px 20px 0px 0px;
    
}
.middle{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    background-color: rgb(252, 247, 247);
    border-bottom: 2px solid white;
}
.img-container{
    width: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}
.img-container img{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid white; 
}
.info-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.info-container .name, .info-container .age{
    padding: 10px 10px 2px 2px;
    font-weight: 900;
}
.middle .location, .bottom div .small{
    color: grey;
    font-size: 12px;
    color: orange;
}

.bottom{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid grey;
    background-color: rgb(252, 247, 247);
    border-radius: 0px 0px 25px 25px;
    
}
.bottom  div{
    width: 33.3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bottom div .number{
    font-weight: 900;
}
.bottom div div{
    padding: 2px;
}
.bottom a{
    text-decoration: none;
    color: orange;
}
.bubble{
    position: absolute;
    top: -500px;
    margin: 0 auto;
    right: 40%;
    left: 40%;
}
.descend{
    position: absolute;
    top: 100px;
    margin: 0 auto;
    right: 40%;
    left: 40%;
    bottom: 100px;
}