body {
    margin: 0;
    font-family: 'Inter';
    background-color: #0F1012;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #444;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

p {
    font-size: 1.1rem;
    color: #aaa;
}

.nav {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.2s ease-in-out;
}

.nav a:hover {
    background: #fff;
    color: #0f0f0f;
}