body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0; /* Remove default margin for h1 */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

section {
    padding: 20px;
    margin: 0 20px; /* Adjust horizontal margins for sections */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.project {
    margin-bottom: 20px;
    margin-left: 20px;
}


a:link{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

#githubIcon{
    color: black;
    width: 20px;
    height: 20px;;
}