*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* outline: 1px solid; */
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color:  hsl(47, 88%, 63%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

}

.card{
    background-color: hsl(0, 0%, 100%);
    border-radius: 1rem;
    border: 1px solid hsl(0, 0%, 7%);
    box-shadow: 10px 10px 0px hsl(0, 0%, 7%);

    padding: 1.5rem;
    width: min(90%, 400px);
    display: flex;
    flex-direction: column;     
    align-items: flex-start;
    gap: 1rem;

}

.card .img_container{
    width: 100%;
}
.card .img_container{
    border-radius: 1rem;
}

.card .progress_btn{
    border-radius: 0.5rem;
    border: none;
    padding: 0.7rem;
    background-color: hsl(47, 88%, 63%);
    font-weight: 800;
}

.card .date{
    font-size: min(14px, 16px);
    font-weight: 600;
}

.card .card_title{
   font-weight: 800;
}
.card .description{
    font-size: 16px;
    color:  hsl(0, 0%, 42%);
}

.card .user_info_container{
    padding-top: 0.5rem;
    display: flex;
    
}

.card .pfp_icon{
    width: 2.5rem;
}
.card .name{
    color:  hsl(0, 0%, 7%);
    font-weight:  800;
    padding: 0.5rem;
}


footer{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
footer a{
    color:  hsl(0, 0%, 7%);
    font-weight: 700;
}

