/* links.css */

body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.no-underline {
    text-decoration: none;
    color: inherit;  
}


.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-username {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.profile-bio {
    color: #65676B;
    margin-top: 5px;
    text-align: center;
}

.links-container {
    width: 100%;
}

.link-item {
    background-color: #f0f2f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    transition: transform 0.2s, background-color 0.2s;
    text-align: center;
}

.link-item:hover {
    transform: scale(1.02);
    background-color: #e4e6eb;
}

.link-text {
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.social-icons li a {
    font-size: 24px;
    color: black;
    transition: color 0.2s;
}

.social-icons li a:hover {
    color: #555;
}
