/*-google fonts -*/
@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;
    font-weight: 600;
    font-style: normal;  
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0,0, 0, 0.1);
    position: relative;
}
.profile_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 36%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background-color: rgb(85, 210, 255);
}

.image
{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: rgb(61, 106, 205);
    padding: 3px;
    margin-bottom: 10px;
}

.image .profile_img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.profile_card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-data .name{
    font-size: 22px;
    font-weight: 500;
}
.text-data .job{
    font-size: 15px;
    font-weight: 400;
}

.profile_card .media-button{
    display : flex;
    align-items: center;
    margin-top: 9px;
}

.media-button .link{
    height: 30px;
    width: 30px;
    font-size: 15px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin : 0 5px 0 0;
    text-decoration: none;
    background-color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 2px solid #3c3c3c ;
}

.media-button .link:hover{
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

.enter{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 0 0;

}
.enter #click{
    border-radius: 6px;
    margin-top: 15px;
    background-color: #fff;
    color:#0099ff;
    cursor: pointer;
    border: #fff;
    height: 20px;
}

.enter #click:hover{
    height: 120%;
    width: 120%;
    background-color: #0099ff;
    color:#fff;
    border: #fff;
}

.enter #port{
    border-radius: 6px;
    background-color: #fff;
    color:#0099ff;
    cursor: pointer;
    border:#fff;
    height: 20px;
}

.enter #port:hover{
    height: 150%;
    width: 120%;
    background-color: #0099ff;
    color:#fff;
    border: #fff;
}


