

/* OR */

body {
    font-family: 'Montserrat', sans-serif; /* Update to Montserrat */
    margin: 0;
    padding: 0;
}


.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center; /* Center align header content */
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-right: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 50px 0;
    text-align: center; /* Center align section content */
}

h2 {
    margin-bottom: 20px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    justify-content: center; /* Center align project list */
}

.project {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    text-align: center; /* Center align project content */
}

.project h3 {
    margin-top: 0;
}

.project p {
    margin-bottom: 0;
}