* {
    margin: 0;
    padding: 0;
    font-size: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4070f4;
}

.profilecard {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    justify-content: center;
    background-color:#fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 25px;
    position: relative;

}

.image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #4070f4;
    padding: 3px;
    margin-bottom: 10px;

}

.harshit {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.name{
    font-size: 22px;
    font-weight: 500;
}
.college{
    font-size: 15px;
    font-weight: 400;
}
.media{
    display: flex;
    align-items: center;
    padding: 10px;
}
.link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 34px;
    width: 34px;
    font-size: 18px;
    text-decoration: none;
    margin: 0px 8px ;
    border-radius: 50%;
    background-color: blue;
    padding-left: 6px;
}
.button{
    display: flex;
    align-items: center;
    padding: 10px;
}
.message{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 24px;
    margin: 0 10px;
    padding: 8px 24px;
    background-color: #4070f4;
    cursor: pointer;
    transition: all 0.3s ease;
}
.message:hover{
    background-color: #0e4bf1;
}
.social{
    display: flex;
    align-items: center;
    color: #333;
}
.data{
    padding: 0 20px;
    border-right: 2px solid #e7e7e7;
}
.data:last-child{
    border-right: navajowhite;
}
i{
    font-size: 18px;
    margin-right: 6px;
}