* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f0f4f8;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

h1 {
    font-size: 32px;
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 30px;
}

.project-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
}

h2 {
    color: #2d3436;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.button {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.button:hover {
    background: #45a049;
}

footer {
    margin-top: 30px;
    color: #636e72;
    font-size: 14px;
}
