body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #a9e4e8, #a9e4e8, #a9e4e8);
    color: #333;
    text-align: center;
}

header {
    background-color: #e59b52;
    color: white;
    padding: 2rem;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 300px;
    text-align: left;
}

.project-card h2 {
    font-size: 1.5rem;
    color: #e59b52;
}

.project-card p {
    font-size: 1rem;
}

.project-card a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: white;
    background-color: #e59b52;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

footer {
    background: #333;
    color: white;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

