@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


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

:root {
    --clr-green:  hsl(75, 94%, 57%);
    --clr-white: hsl(0, 0%, 100%);
    --clr-black: hsl(0, 0%, 8%);
    --clr-dark-grey: hsl(0, 0%, 12%);
    --clr-grey: hsl(0, 0%, 20%);
    --fw-400: 400;
    --fm-Inter: 'Inter',sans-serif;
}

img {
    display: block;
    width: 100%;
}

body {
    background-color: var(--clr-black);
    font-family: var(--fm-Inter);
}

.social-container {
    background-color: var(--clr-dark-grey);
    border-radius: 0.5rem;
    max-width: 15rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.wrapper {
    display: grid;
    min-height: 100dvh;
    place-items: center;
}

.name {
    color: var(--clr-white);
    margin-bottom: .2rem;
}

.location {
    font-size: .6rem;
    font-weight: var(--fw-400);
    color: var(--clr-green);
    margin-bottom: 1rem;
}

.bio {
    font-size: .6rem;
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.social-image {
    margin-bottom: 1rem;
    width: 4.5rem;
    border-radius: 50%;
}

.social-links {
    text-align: center;
    width: 100%;
    list-style: none;
}

.social-links .link {
    margin-bottom: 10px;
}

.social-links .link a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--clr-grey);
    width: 100%;
    border-radius: 5px;
    
}

a {
    text-decoration: none;
    color: var(--clr-white);
    font-size: .6rem;
}

.social-image img {
    justify-content: center;
    align-items: center;
}