*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Header */
#blog-header-container{
    height: 300px;
    width: 100%;
    background-color: #08354e;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/Blog-header-bg.webp');
    background-position: right ;
    background-repeat: no-repeat;
    background-size: contain;
    background-clip: border-box;
    padding: 0 50px;
}
#blog-header-container h1{
    color: white;
    font-size: 45px;
}
@media (max-width: 991px) {
#blog-header-container h1{
    width: 100%;
    text-align: left;
}
}
@media (max-width: 600px) {
#blog-header-container{
    height: fit-content;
    width: 100%;
    background-image:none;
    padding: 50px 0px;
}
#blog-header-container h1{
    text-align: center;
    font-size: 30px;
}
}

/* Blog Card Container */
#blog-card-main-container{
    height: fit-content;
    width: 100%;
    display: flex;
    background-color: rgb(250, 235, 215,0.5);
    justify-content: center;
    align-items: center;
}
#blog-card-inner-container{
    height: fit-content;
    width: 95%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}
/* Blog Card */
#blog-card-box{
    height: 350px;
    border: 2px solid #08354e;
    width: 300px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px black;
    display: flex;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    align-items: center;
    flex-direction: column;
}
#blog-card-box:hover{
    box-shadow: 1px 1px 5px gray;
}
#blog-card-img-container{
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blog-card-img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#blog-card-text-container{
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #08354e;
    gap: 10px;
    flex-direction: column;
    box-shadow: 1px -1px 10px black;
}
#blog-card-text-container h2{
    color: white;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
    font-size: 30px;
}
#blog-card-text-container span{
    color: #33cbd9;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}
#blog-card-box:hover h2{
    color: #33cbd9;
}
#blog-card-box:hover span{
    color: #fff;
}