
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --green-color:  hsl(75, 94%, 57%);
    --white-color: hsl(0, 0%, 100%);
    --grey-700-color: hsl(0, 0%, 20%);
    --grey-800-color: hsl(0, 0%, 12%);
    --grey-900-color: hsl(0, 0%, 8%);
    font-size: 16px;
    --pargraph-font-size: 14px;
    --font-family: 'Figtree', sans-serif;
    --font-weight-400: 400;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --mobile-width: 23.438rem;
    --desktop-width: 90rem;

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

body {
    font-family: "Inter", sans-serif;
    background: var(--grey-900-color);
    color: var(--white-color);

}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: auto;
}

.card {

    display: flex;
    flex-direction: column;
    justify-content: center;
    /*align-items: center;*/
    gap: 1.25rem;
    max-width: var(--mobile-width);
    padding: 2rem 2.4rem;
    width: var(--mobile-width);
    /*width: 24rem;*/
    margin: auto;

    background: var(--grey-800-color);
    border-radius: 1rem;
    text-align: center;
}
.card-image{
    border-radius: 50%;
    width: 26%;
    align-self: center;
    margin: .5rem 0 ;
    /*height: auto;*/
    /*margin-bottom: 1rem;*/
}
.location{
    color: var(--green-color);
    font-size: var(--pargraph-font-size);
    margin-top: -.5rem;
}
.card-title{
    line-height: 2rem;
}
.social-links{
    /*display: flex;*/
    /*flex-direction: row;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*gap: 1rem;*/
    /*width: 100%;*/
}
.social-item{
    list-style: none;
    /*width: 92%;*/
    width: 100%;
    background: var(--grey-700-color);
    margin-bottom: 1rem;
    padding: .77rem  0;

    text-align: center;

}

