body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

section {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-filters {
    text-align: center;
    margin-bottom: 20px;
}

.project-filters button {
    padding: 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background: #333;
    color: white;
    border-radius: 5px;
}

.project-filters button:hover {
    background: #555;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}

.project a:hover {
    text-decoration: underline;
}

.creation-filters {
    text-align: center;
    margin-bottom: 20px;
}

.creation-filters button {
    padding: 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background: #333;
    color: white;
    border-radius: 5px;
}

.creation-filters button:hover {
    background: #555;
}

.creation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.creation {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.creation a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}

.creation a:hover {
    text-decoration: underline;
}
