@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    --Yellow: hsl(47, 88%, 63%);
    --White: hsl(0, 0%, 100%);
    --Gray_500: hsl(0, 0%, 42%);
    --Gray_950: hsl(0, 0%, 7%);
    --Default-font: "Figtree", Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;

    height: 100dvh;
    color: var(--Gray_950);
    background-color: var(--Yellow);
    font-family: var(--Default-font);
}

main{
    margin: 16px;
    padding: 16px;
    overflow: hidden;
    max-width: 350px;
    border-radius: 16px;
    border: 1px solid var(--Gray_950);
    background-color: var(--White);
    box-shadow: 7px 7px 0px var(--Gray_950);
}

picture, p, h1{
    margin-bottom: 15px;
}

.banner{
    border-radius: 12px;
}

.studing_status{
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.875rem;
    background-color: var(--Yellow);
}

.published_data{
    font-size: 0.750rem;
}

h1{
    font-size: 1.5rem;
}

.description{
    color: var(--Gray_500);
}

.profile{
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile_picture{
    width: 30px;
}

.profile > p{
    margin: 0px;
}

.attribution { 
    font-size: 11px; text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media screen and (min-width: 768px) {
    
}