body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #ffffff; /* Soft grey background */
    color: #575555; /* Adjusted text color for visibility */
}

header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc; /* Add a line after the menu bar */
    padding-bottom: 10px; /* Add some space between the title and the line */
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

section {
    margin-bottom: 40px;
}

h1 {
    color: #333;
    text-align: center;
    font-size: 2em; /* Increase the title font size */
    margin-bottom: 20px;
}

h2 {
    color: #333;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 10px;
    background-color: #f4f4f4;
}

.about-container {
    text-align: center;
}

.about-container img {
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 10px;
}

.project {
    flex: 0 0 48%;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
}

.project img {
    width: 100%;
    max-width: 40%;
    max-height: 120px;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto;
}
