body{
    background: linear-gradient(90deg, #fff7ad, #ffa9f9);
    font-family: 'Open Sans', sans-serif;
}
.profile-picture{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    height: auto;
    max-width: 200px;
    border-radius: 50%;
}
.profile-name{
    text-align: center;
    padding: 15px;
    font-size: 30px;
    margin-top: 20px;
}
.profile-name p{
    font-size: 25px;
}
.links{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border: 1px solid red;
    width: 290px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    font-size: 16px;
    align-items: center; 
    padding: 10px;
}
a{
    text-decoration: none;
    color: black;
    transition: color 1s;
}
a:hover{
    color: orange;
    background: white;
}
.fa-brands {
    display: flex;
    align-items: center; /* Ensures that the icon and text are aligned */
    justify-content: center;
    padding-top: 5px;
    margin-right: 10px; /* Optional: adds a little space between the icon and text */
}
   
