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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2C2416;
    background-color: #FAF8F5;
}

/* Container - Full viewport */
.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Centered title */
.title {
    font-weight: 400;
    color: #2C2416;
    text-align: center;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .title {
        font-size: 4rem;
    }
}

/* GitHub link at bottom */
.github-link {
    position: absolute;
    bottom: 2rem;
    color: #5A4A3A;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.github-link:hover {
    color: #2C2416;
}
