body {
    font-family: Arial;
    margin: 0;
    background-color: #04383d;
}

header {
    background: #353b41;                 

    color: white;
    text-align: center;
    padding: 30px;
}

/*profile pic */
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

nav {
    background: #f4f5f5;
    text-align: center;
    padding: 10px;
}

nav a {
    color: #04383d;
    margin: 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #939696;
}

/* Sections */
section {
    padding: 40px;
    margin: 20px;
    background: white;
    border-radius: 10px;
}

ul {
    list-style-type: square;
}

.project {
    background: #eee;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
}

footer {
    text-align: center;
    background: #353b41;
    color: white;
    padding: 10px;
}