:root {
    --grey-900: #141414;
    --grey-800: #1f1f1f;
    --grey-700: #333333;
    --blue: #2589a2;
    --white: #FFFFFF;

    --font-text-1-size: 2.4rem;
    --font-text-2-size: 1.4rem;

    --font-line-height: 1.5;
    --font-letter-spacing: 0px;

    --font-family: 'Inter', sans-serif;
    --font-weight-extra-bold: 800;
    --font-weight-medium: 500;

    --space-40: 40px;
    --space-24: 24px;
    --space-16: 16px;
    --space-12: 12px;
    --space-8: 8px;
    --space-4: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html {
    font-size: 62.5%;
    height: 100vh;
}

body {
    background-color: var(--grey-900);
    font-family: var(--font-family);
    line-height: var(--font-line-height);
    letter-spacing: var(--font-letter-spacing);
    height: 100%;
    align-content: center;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 384px;
    max-height: 611px;
    gap: var(--space-24);
    padding: var(--space-40);
    background-color: var(--grey-800);
    border-radius: var(--space-12);
    margin: auto;
}

.card_pic {
    width: 88px;
    height: 88px;
}

.card_pic img {
    width: 100%;
    border-radius: 50%;
}

.card_title {
    font-size: var(--font-text-1-size);
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

.card_location {
    color: var(--blue);
    font-size: var(--font-text-2-size);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.card_bio {
    color: var(--white);
    font-size: var(--font-text-2-size);
}

.card_links {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    width: 304px;
}

.card_links-button {
    border-radius: var(--space-8);
    padding: var(--space-12);
    cursor: pointer;
    border: none;
    color: var(--white);
    background-color: var(--grey-700);
    font-size: var(--font-text-2-size);
    font-weight: var(--font-weight-extra-bold);
}

.card_links-button:hover {
    background: linear-gradient(var(--blue), #22677c);
    border: 2px solid #245666;
}