@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,400&display=swap');
*{
      font-family: "Poppins", sans-serif;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
}

.ProfCard{
    width: 400px;
    height:400px; 
    /* padding: 10px; */
    background-color:rgb(226, 207, 207); 
    border-radius: 20px;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
 .ProfCard::before{
    content:'';
    position: absolute;
    background-color: rgba(215, 52, 52, 0.721);
     top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    border-radius:20px 20px 0px 0px;
    z-index: -1;
} 

.image{
    height: 175px;
    width: 175px;
    padding: 5px;
    align-self: center;
    border-radius: 50%;
    background-color: white;    
    margin-top: 50px;

}
.profileimg{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 2px solid black;
}
.name{

    padding: px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}
.name p:first-child {
    color: red;
    font-size: 20px;
    margin-bottom:4px;
}
.links{
    display: flex;
    gap: 20px;
    padding: 10px;
}
.github,.linkedin,.instagram{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: blue;
    color: white;
    font-size:20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram{
    background: radial-gradient(circle at 30% 107%, 
  #fdf497 0%, 
  #fdf497 5%, 
  #fd5949 45%, 
  #d6249f 60%, 
  #285AEB 90%);
}

.github{
    background-color:#0d1117 ;
}
.linkedin{
    background-color:#0A66C2;
}
.button {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 24px;
  margin: 10px 10px;
  padding: 8px 24px;
  background-color: #4070f4;
  cursor: pointer;
  transition: all 0.5s ease;
}

.button:hover {
  background-color: #0e4bf1;
}


a {
    color: inherit; 
    text-decoration: none;
}