body {
    background-color: #121212; /* Set the background color to dark */
    margin: 0;
    font-family: 'San Francisco', Arial, sans-serif;
    color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #121212; /* Ensure the container has a dark background */
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.banner-container {
    margin-bottom: 20px;
}

.banner {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none; /* Remove border for iframe */
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    position: absolute;
    top: 200px; /* Adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%);
}

.username {
    font-size: 2em;
    margin-top: 100px; /* Adjusted margin to move it up */
}

.bio {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.bitweets .tweet-container {
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 2px solid #fff; /* Added white outline */
}

.tweet-header {
    display: flex;
    align-items: center;
}

.tiny-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.tweet-body {
    background-color: #444;
    padding: 10px;
    border-radius: 10px;
    flex-grow: 1;
    border: 2px solid #fff; /* Added white outline */
}

.donate {
    text-align: center;
    margin: 20px 0;
}

.donation-link {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.donation-link:hover {
    background-color: #0056b3;
}

.discord-chat {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#discord-widget {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 700px; /* Adjust as needed */
    height: 600px; /* Adjusted height for better fit */
    background-color: #1a1a1a;
    border: 2px solid #fff;
    border-radius: 10px;
}







