@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    margin: 0;
    height: 100vh;
    background: #0d1117;
    color: #c9d1d9;
    font-family: 'Inter', system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #30363d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.8rem;
    margin: 0.4rem 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.6rem;
    color: #8b949e;
    margin: 0.5rem 0;
}

.sub-tagline {
    font-size: 0.8rem;
    color: #8b949e;
    margin: 0.5rem 0;
}

.coming {
    font-size: 1.3rem;
    color: #58a6ff;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

@keyframes s {
    to {
        transform: rotate(360deg)
    }
}

a {
    color: #58a6ff;
    text-decoration: none;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

a:hover {
    text-decoration: underline;
}

.links {
    margin-top: 3rem;
}

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

    .avatar {
        width: 130px;
        height: 130px;
    }
}