/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #141414; /* Off-black */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}

/* Profile Card Container */
.profile-card {
    background-color: #1f1f1f; /* Dark Gray */
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    width: 380px;
}

.avatar {
    border-radius: 50%; /* Makes image circular */
    margin-bottom: 24px;
}

h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.location {
    color: #c5f82a; /* Neon Green highlight */
    font-weight: bold;
    margin-bottom: 24px;
}

.bio {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 24px;
}

/* Link Button Styling */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    background-color: #333333;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover State */
.social-link:hover {
    background-color: #c5f82a;
    color: #141414;
}