body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 60%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

header h1 {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.6;
}

header a {
    color: inherit; /* Same color as text */
    text-decoration: underline;
}

header .social-icon {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

header .social-icon img {
    width: 24px;
    height: 24px;
}

.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bookmarks, .projects {
    width: 45%;
}

.bookmark-item, .project-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.bookmark-icon, .project-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.bookmark-icon img, .project-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bookmark-item h3, .project-item h3 {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.bookmark-item p, .project-item p {
    margin: 0;
    margin-top: 4px;
    color: #666;
    font-size: 0.9rem;
}

.project-item a {
    color: inherit; /* Same color as text */
    text-decoration: underline;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .bookmarks, .projects {
        width: 100%;
        margin-bottom: 20px;
    }

    .profile-picture {
        width: 80px;
        height: 80px;
    }

    .profile-picture img {
        width: 100%;
        height: 100%;
    }
}
