@import url("https://fonts.bunny.net/css?family=figtree:300,500,600&display=swap");

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

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-button {
    display: block;
    padding: 1.25rem 2rem;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-button:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-button:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .project-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

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