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

body {
    background: #0a0a14;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Mono', monospace;
    overflow: hidden;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

main {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.name {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 0.5s;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.github-link {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1s;
}

.github-link:hover {
    color: #ffffff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.github-link svg {
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
