@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}
.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: black;
    padding: 1.5px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.image .profile-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid goldenrod;
}
body{
    background: linear-gradient(160deg,goldenrod,black);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-card{
    max-width: 500px;
    width: 100%;
    height: 400px;
    background: whitesmoke;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 5px 10px 15px  goldenrod;
}
.profile-card .text-data{
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    color:black;
}
.text-data .name{
    font-size: 22px;
    font-weight: 500;
}
.text-data .Email{
    font-size: 20px;
    font-weight: 400;
}
.text-data .streaks{
    font-size: 20px;
    font-weight: 500;
}
.text-data .friends{
    font-size: 20px;
    font-weight: 500;
}
.profile-card .media-buttons{
    display: flex;
    margin-top: 45px;
    align-items: center;
    justify-content: center;
}
.media-buttons .link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgb(0, 0, 0);
    text-decoration: none;
}
/* .cont{
    height: 100vh;
    display: flex;
    justify-content: center;
}
.con{
    height: 500px;
    width: 600px;
    background-color: white;
    border: 5px solid goldenrod;
    border-radius: 20px;
} */
