body {
    font-family: 'Varela Round', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom, #82e4e1, #6aa0d8);
}

.container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 20px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.username {
    margin: 10px 0 5px;
    font-size: 20px;
    color: black;
}

.bio {
    margin: 20px 0 20px;
    font-size: 15px;
    color: #777;
    font-weight: bold;
    color: black
}

.links .link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.links .link:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 15%;
}

.link-text {
   text-align: center;
   flex-grow: 1;
   transform: translate(-25px, 0);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
}

.social-icons img {
    width: 36px;
    height: 36px;
}

.social-icons img:hover {
    width: 40px;
    height: 40px;
}
