/* Reset some default browser styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set a background color and text color for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Style the header and navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

nav h1 {
    font-size: 2rem;
}

nav ul {
    list-style-type: none;
}

nav li {
    margin-left: 1.5rem;
    display: inline;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style sections */
section {
    padding: 3rem 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Style portfolio projects */
.project {
    margin-bottom: 2rem;
    text-align: center;
}

.project img {
    max-width: 100%;
}

.project h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
