body {
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.profile {
    margin-top: 50px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
}

h1 {
    margin: 10px 0;
}

.bio {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.links a {
    display: block;
    margin: 10px auto;
    padding: 12px;
    width: 200px;
    background: #222;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.links a:hover {
    background: #444;
}
