/* Base styles and dark color scheme */
body {
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Profile picture style */
.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Rounded profile picture */
    margin-top: 2em;
    border: 3px solid #f5f5f5; /* White border for contrast */
}

/* Bio section */
.bio {
    margin-top: 1em;
    max-width: 600px; /* Limits the bio text width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1em;
}

.bio h1 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    color: #f5f5f5;
}

.bio p {
    font-size: 1.1rem;
    margin-bottom: 2em;
    color: #cccccc;
}

/* Social links list */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 400px; /* Limits the width of the links section */
    margin-left: auto;
    margin-right: auto;
}

.social-links li {
    margin: 1em 0; /* Adds spacing between links */
}

.social-links a {
    display: inline-block;
    width: 100%; /* Ensures the links take up the full width */
    padding: 0.75em 0;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid #f5f5f5;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for links - red accent */
.social-links a:hover {
    background-color: #ff1a1a;
    color: #ffffff;
}
