* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.location {
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bio {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

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

.btn {
    display: block;
    text-decoration: none;
    color: white;
    background: #333;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: hsl(75, 94%, 57%);
}
