body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

header {
    background-color: #007BFF; /* Blue color */
    color: white;
    padding: 20px;
    text-align: left; /* Align text to the left */
}

.profile-image {
    width: 100px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make it circular */
    margin-right: 15px; /* Space between image and text */
    float: left; /* Align image to the left */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 20px;
    margin: 20px;
    border: 1px solid #007BFF; /* Blue color */
    border-radius: 5px;
}

.project {
    margin-bottom: 20px;
}


footer {
    text-align: center;
    padding: 10px;
    background-color: #007BFF; /* Blue color */
    color: white;
}
