body {
    background: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: row; /* Sidebar on the left */
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.sidebar {
    width: 250px;
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-right: 2px solid #ddd;
}

.sidebar img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.content {
    flex: 1;
    padding: 20px;
}

h1 {
    font-size: 24px;
}

h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 15px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}

/* Projects Section */
.projects {
    margin-top: 20px;
}

.project {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.1em;
    font-weight: bold;
}

.project-header a {
    text-decoration: none;
    color: #007bff;
}

.project-header a:hover {
    text-decoration: underline;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        width: 90%;
        padding: 15px;
    }

    .content {
        width: 90%;
        padding: 15px;
    }

    .sidebar img {
        width: 60%;
    }
}
