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

body {
    background-color: #141414;
    display: flex;
    font-family: 'Inter', sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: #1f1f1f;
    border-radius: 12px;
    text-align: center;
    padding: 2rem;
    width: 320px;
}

.avater {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}
h1 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.location {
    color: greenyellow;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.bio {
    color: #d4cece;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links a {
    background-color: #333333;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    padding: 0.76rem;
    font-weight: bold;
    transition: background-color, 0.3s, color 0.3s;
}

.links a:hover {
    background-color: greenyellow;
    color: #141414;
}