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

:root{
    --font-family: "Figtree", sans-serif;
    --text-preset1: 800 clamp(20px,2vw,24px)/1.5 var(--font-family);
    --text-preset2: 500 clamp(14px, 1.5vw, 16px)/1.5 var(--font-family);
    --text-preset3: 500 clamp(12px, 1.2vw, 14px)/1.5 var(--font-family);
    --text-preset3-bold: 800 clamp(12px, 1.2vw, 14px)/1.5 var(--font-family);

}


body,html{
    height: 100%;
    letter-spacing: 0;

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

.card{
    border: 1.5px solid #111111;
    width: clamp(325px, 80%, 385px);
    padding: 24px;
    background-color: white;
    border-radius: 20px;
    box-sizing: border-box;
    filter: drop-shadow(10px 10px #111111);
    transition: filter 0.3s ease-in-out;
}

.card__image{
    height: 200px;
    margin: 0 auto 24px
}

.card__content .chip{
    display: inline-block;
    margin-bottom: 12px;
    font: var(--text-preset3-bold);
    background-color: #f4d04e;
    border-radius: 4px;
    padding: 4px 12px;
}

.card__content .subtitle{
    margin-bottom: 12px;
    font: var(--text-preset3);
}

.card__content .title{
    font: var(--text-preset1);
    margin-bottom: 12px;
    white-space: nowrap;
}

.card:hover{
    filter: drop-shadow(20px 20px #111111);
}

.card:hover .card__content .title{
    color: #f4d04e;
    cursor: pointer;
   
    
}

.card__content .content{
    font: var(--text-preset2);
    color: #6b6b6b;
    margin-bottom: 24px;
}

.card__image img{
    object-fit: cover;
    width: 100% ;
    height: 200px;
    border-radius: 20px;
}

.card__footnote{
    display: flex;
    align-items: center;
    font: var(--text-preset3-bold);

}

.card__footnote .pfp{
    display: flex;
    margin-right: 12px;
    justify-content: center;
    align-items: center;
}