body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.page-container {
    max-width: 700px;
    background: white;
    padding: 40px;
    margin: 40px 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

h1,
h2 {
    color: #333;
}

.project {
    margin-bottom: 30px;
}

.project h3 {
    margin-bottom: 5px;
    color: #0077cc;
}

.project p {
    margin: 0;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 30px 0;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 40px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}