@font-face {
    font-family: "Figtree";
    src: url("assets/fonts/static/Figtree-ExtraBold.ttf");
    src: url("assets/fonts/static/Figtree-Medium.ttf");
    src: url("assets/fonts/Figtree-VariableFont_wght.ttf");
}
body {
    font: 15px Figtree;
    background-color: #F4D04E;
}
.gray-950{
    color: #111111

}
.gray-500{
    color: #6B6B6B;
}
.yellow-bg{
    background-color: #F4D04E;
}

.font-bold{
    font-weight: bold;
}
.font-12{
    font-size: 12px;
}
.font-14{
    font-size: 14px;
}
main{
    height: 100vh;
}

.card{
    display: flex;
    justify-content: center;
    align-content: center;
    height: 100vh;
    flex-wrap: wrap;
}
.card-container{
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #111111;
    box-shadow: 12px 12px 0px 0px #111111;
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
}
.img-container{
    border-radius: 10px;
    margin:15px;
    height: 60%;
    overflow: hidden;
}
.img-container img{
    width: 100%;
    height: 100%;
    text-align: center;
}

.bottom-content{
    display: flex;
    flex-direction: column;
    padding: 20px;

}
.tags{
    background-color: #F4D04E;
    height: 26px;
    width: fit-content;
    border: 0px solid;
    border-radius: 4px;
    text-align: center;

}
.tags label{
    padding: 0px 10px 0px 10px;
}
.title:hover, .title:focus{
    color: #F4D04E;
    cursor: pointer;
}
.profile-img-cont{
    width: 32px;
    height: 32px;
    text-align: center;

}
.profile-img-cont img{
    width: 100%;
}
.profile-cont{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.profile-cont label{
    margin-left: 10px;
}

@media only screen and (min-width: 768px){
    .card-container{
        width: 40%;
    }

}
@media only screen and (min-width: 1024px){
    .card-container{
        width: 28%;
    }

}
@media screen and (min-width: 1440px){
    .card-container{
        width: 21%;
    }

}


