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

body{
    background:#0d1117;
    color:#c9d1d9;
    font-family:"JetBrains Mono",monospace;
    min-height:100vh;
    display:flex;
    justify-content:center;
    padding:40px 20px;
}

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

.logo{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:2px solid #30363d;
}

.terminal{
    margin-bottom:20px;
}

.green{
    color:#3fb950;
}

h1{
    font-size:3rem;
    margin-bottom:10px;
}

.bio{
    color:#8b949e;
    margin-bottom:15px;
}

.status{
    color:#3fb950;
    margin-bottom:40px;
}

.section-title{
    color:#8b949e;
    margin-bottom:15px;
    margin-top:25px;
}

.grid{
    display:grid;
    gap:15px;
}

.card{
    background:#161b22;
    border:1px solid #30363d;
    border-radius:12px;
    padding:20px;
    text-decoration:none;
    color:white;
    transition:.2s;
}

.card:hover{
    border-color:#3fb950;
    transform:translateY(-2px);
}

.card h2{
    color:#3fb950;
    margin-bottom:10px;
}

.card p{
    color:#8b949e;
}

.links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.links a{
    color:#58a6ff;
    text-decoration:none;
}

.links a:hover{
    text-decoration:underline;
}