:root{
    --Green: hsl(75, 94%, 57%);
    --White: hsl(0, 0%, 100%);
    --Grey700: hsl(0, 0%, 20%);
    --Grey800: hsl(0, 0%, 12%);
    --Grey900: hsl(0, 0%, 8%);
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif ;
}
body{
    background-color: var(--Grey900);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.container{
    background-color: var(--Grey800);
    width: 350px;
    height: 530px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.propic{
    margin: 30px auto;
    width: 100px;
    height: 100px;
    border-radius: 500px;
}
.pfppic{
    width: 100%;
    border-radius: 100px;
    object-fit: cover;
}
.demographics{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.name{
    font-weight: 700;
    color: var(--White);
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.location{
    color: var(--Green);
    margin-bottom: 20px;
}
.bio{
    color: grey;
    margin-bottom: 15px;
    font-size: 0.8rem;
}
.socials{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
button{
    width: 80%;
    padding: 10px 0;
    border-radius: 5px;
    background-color: var(--Grey700);
    color: var(--White);
    margin: 5px 0px;
    border: none;
    font-weight: 500;
}
button:hover{
    cursor: pointer;
    background-color: var(--Green);
    color: black;
}
.attribution{
    margin-top: 20px;
    color: var(--White);
    font-size: 1rem;
    text-align: center;
}



@media screen and (max-width: 375px) {
    *{
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        font-family: "Inter", sans-serif ;
    }
    body{
        background-color: var(--Grey900);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .container{
        background-color: var(--Grey800);
        width: 320px;
        height: 550px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }
    .propic{
        margin: 30px auto;
        width: 100px;
        height: 100px;
        border-radius: 500px;
    }
    .pfppic{
        width: 100%;
        border-radius: 100px;
        object-fit: cover;
    }
    .demographics{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .name{
        font-weight: 700;
        color: var(--White);
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .location{
        color: var(--Green);
        margin-bottom: 20px;
    }
    .bio{
        color: grey;
        margin-bottom: 15px;
        font-size: 0.8rem;
    }
    .socials{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    button{
        width: 80%;
        padding: 10px 0;
        border-radius: 5px;
        background-color: var(--Grey700);
        color: var(--White);
        margin: 5px 0px;
        border: none;
        font-weight: 500;
    }
    button:hover{
        cursor: pointer;
        background-color: var(--Green);
        color: black;
    }
    .attribution{
        margin-top: 20px;
        color: var(--White);
        font-size: 0.8rem;
    }
}