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

nav {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

nav button:hover {
    background-color: #45a049;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.project p {
    font-size: 16px;
    color: #666;
}

.project a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

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

h1 {
    color: #333;
    font-size: 32px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .project h2 {
        font-size: 20px;
    }

    .project p {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.pagination button.active {
    background-color: #0056b3;
}

.pagination span {
    margin: 0 10px;
}
footer.icpId {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer.icpId p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

footer.icpId a {
    color: #000000;
    text-decoration: none;
}

footer.icpId a:hover {
    text-decoration: underline;
}