/*fonts*/
@font-face {
    font-family: 'Figtree';
    src: url('/blog-preview-card-main/assets/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Figtree';
    src: url('/blog-preview-card-main/assets/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
/*attributions*/
.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a { 
    font-size: 11px;
    color: hsl(228, 45%, 44%); 
}
/*characteristics*/
*{
    font-size: 16px;
    font-family: 'Figtree';
}
/*body*/
body{
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
}
/*card*/
.card{
    margin-top:7%;
    height: 525px;
    width: 350px;
    padding: 25px;
    background-color: hsl(0, 0%, 100%);
    border: 1px solid black;
    border-radius: 5%;
    box-shadow: 10px 10px 0px 0px black;
}
/*Container Image*/
.imagen{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5%;
    margin-bottom: 20px;
}
/*Image*/
.imag{
    width: 100%;
    height: 100%;
    border-radius: 5%;
}
/*Container title h1*/
.title{
    width: 100px;
    height: 35px;
    background-color: hsl(47, 88%, 63%);
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*h1*/
h1{
    color: hsl(0, 0%, 7%);
    font-weight: 800;
}
/*h2*/
h2{
    margin-top: 20px;
    color: hsl(0, 0%, 42%);
    font-weight: 500;
}
/*title third*/
.thirdtitle{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 350px;
    height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/*h3*/
h3{
    color: hsl(0, 0%, 7%);
    font-weight: 800;
    font-size: 1.6em;
}
/*h3:hover*/
h3:hover{
    color: hsl(47, 88%, 63%);
    cursor: pointer;
}
/*paragraph*/
p{
    color: hsl(0, 0%, 42%);
    line-height: 1.5;
    margin-bottom: 10px;
}
/*data person*/
.person{
    display: flex;
}
/*container image person*/
.imageperson{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/*Image avatar*/
.perfil{
    width: 40px;
    height: 40px;
}
/*person name*/
h4{
    margin-left: 10px;
    color: hsl(0, 0%, 7%);
}
/*footer*/
.footer{
    margin-top: 5px;
}

@media (max-width: 375px){
    /*card*/
    .card{
        margin-top:30%;
        margin-right: 7px;
        height: 475px;
        width: 83%;
        padding: 20px;
    }
    /*h3*/
    h3{
        color: hsl(0, 0%, 7%);
        font-weight: 800;
        font-size: 20px;
    }
    /*paragraph*/
    p{
        color: hsl(0, 0%, 42%);
        line-height: 1.3;
        margin-bottom: 10px;
    }
    /*Image avatar*/
    .perfil{
        width: 35px;
        height: 35px;
    }
}