:root{
    /* colors */
    --green : hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
    /* font */
    --font-size: 14px;
    --font-weight: 400;
    --font-weight-md: 600;
    --font-weight-lg: 700;
    /* spacing */
    --spacing: 0.875rem;
    --spacing-md: 2rem;
    --padding-lg: 3rem;
    /*  */
    --border-radius: 10px;
    --border-radius-x: 12px;
    --border-radius-xx: 15px;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/static/Inter-Regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/static/Inter-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
    font-display: swap;


}
@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/static/Inter-Bold.ttf);
    font-weight: 700;
    font-style: normal;
    font-display: swap;

}

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


body{
    height: 100vh;
    background-color: var(--grey-900);
    color: var(--white);
    font-family: 'Inter',sans-serif;
}

main{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

article{
    /* border: 1px solid; */
    width: 370px;
    /* height: 700px; */
    background-color: var(--grey-800);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap:var(--spacing-md);
    border-radius: var(--border-radius);
    
}

.profile{
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: var(--spacing-md);
}

.profile > img{
    height: 90px;
    border-radius: 50px;
   
}
h1{
    font-weight: var(--font-weight-md);
    margin-bottom: 10px;
}
p {
    font-size: var(--font-size);
    text-align: center;
    color: var(--green);
    font-weight: var(--font-weight-lg);

}
blockquote{
    text-align: center;
    font-size: var(--font-size);

}

ul{
    list-style: none;
    width: 100%;
    /* border: 1px solid; */
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing);

}
.btn{
    width: 100%;
    height: 45px;
    background-color: var(--grey-700);
    border: 1px var(--grey-700);
    border-radius: var(--border-radius);
    color: white;
    font-weight: var(--font-weight-lg);
    cursor: pointer;
}

.btn:hover{
    background-color: var(--green);
    color: var(--grey-900);
}

.attribution { font-size: 11px; text-align: center;  font-weight: var(--font-weight-lg);}
.attribution a { color: hsl(228, 45%, 44%); }