*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Readex Pro", sans-serif;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #cad3e0ab;
    z-index: 1000;
}
body {
    padding-top: 100px;
    justify-content: center;
    align-items: center;
}


.container{
    width: 100%;
}
.blog-section{
    width: 85%;
    margin: 20px auto;
}
.blog-section .title{
    width: 60%;
    text-align: center;
    margin: auto;
}
.blog-section .title h2{
    font-size: 40px;
    color: rgb(21, 21, 100);
    margin-top: 50px;    
}
.blog-section .title p{
    font-size: 18px;
    color: rgb(21, 21, 100);
    margin-top: 20px;
}
.image-section img{
    width: 100%;
    height: auto;
}
.content{
    padding: 15px 20px;
}
.content h4{
    font-size: 24px;
    color:rgb(21, 21, 100);
    font-weight: 500;
}
.content p{
    color:rgb(21, 21, 100);
    font-size: 20px;
}
.content a{
    text-decoration: none;
    color:white;
    margin-top:12px ;
    display: inline-block;
    background-color:  rgb(21, 21, 100);
    padding:8px 15px ;
}
.content a:hover{
    background-color: #fdc938;
}
.card .posted-date{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: #fdc938;
    padding: 6px 15px ;
}
