@font-face {
    font-family: 'Figtree';
    src: url('assets/fonts/static/Figtree-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Figtree Medium';
    src: url('assets/fonts/static/Figtree-Medium.ttf') format('truetype');
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body{background-color: hsl(47, 88%, 63%);}
section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section .card{
    padding: 24px;
    background-color: white;
    border: 2px solid black;
    width: 384px;
    height: auto;
    border-radius: 20px;
    box-shadow: 10px 10px black;
}
section img{
    width: auto;
    border-radius: 15px;
    margin-bottom: 24px;
}
.card-body{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.card-body h5{
    border-radius: 3px;
    padding: 4px 12px;
    color: hsl(0, 0%, 7%);
    background-color: hsl(47, 88%, 63%);
    font-family: 'Figtree';
    font-size: 14px;
    line-height: 150%;
}
.card-body h4{
    width: 100%;
    color: hsl(0, 0%, 7%);
    font-family: 'Figtree Medium';
    font-size: 14px;
    line-height: 150%;
}
.card-body h1{
    color: hsl(0, 0%, 7%);
    font-family: 'Figtree';
    font-size: 24px;
    line-height: 150%;
}
.card-body p{
    color: hsl(0, 0%, 42%);
    font-family: 'Figtree Medium';
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 14px;
}
.card-footer{
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-footer img{
    width: 32px;
    height: 32px;
    margin: 0px;
}
.card-footer span{
    color: hsl(0, 0%, 7%);
    font-family: 'Figtree';
    font-size: 14px;
    line-height: 150%;
}


/* Hover */
.card-body h1:hover{
    color:  hsl(47, 88%, 63%);
    cursor: pointer;
}