body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: center;
}

.header {
   background-color: #039be5;
    color: #fff;
    padding: 2px 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg,#4d5363 0%,#313131 100%),linear-gradient(0deg,#ffffff,#ffffff);
}
 .s-btn{
            background: none;
            border: none;
            margin-left: -12px;
            cursor: pointer;
        }
.header .logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 112px;
    height: 28px;
}

.header .logo h1{
   font-size: 25px;
}

.category ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category ul li {
text-wrap: nowrap;
}

.category ul li a {
    color: white;
    text-decoration: none;
    /* background: #e71663; */
    padding: 10px;
    font-size:90%;
    border-radius: 7px;
    /* border: 1px solid #2196f396; */
    box-shadow: 0px 0px 3px #27ff00;
}

.category ul li a:hover {
    color: white;
    text-decoration: none;
    background: #E91E63;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #ffeb3b6b;
    box-shadow: 0px 0px 3px #FFC107;
}
#search{
    height: 40px;
    width: 95%;
    padding: 0px 10px;
    outline: none;
    border: none;

}
.header div form i{
    color: #039be5;
    font-size: 20px;
    margin-left: -28px;
}











 .post-section {
     width: 75%;
    height: auto;
    box-shadow: 0px 0px 3px #eee;
    margin: 0px auto;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
}
.post-title{
    padding: 10px;
    box-shadow: 0px 0px 2px #e91e63d9;
    width: 98%;
    border-radius: 8px;
    margin: 0px;
    margin-bottom: 20px;
}



@media only screen and (max-width: 768px) { /* smartphones, Android phones, landscape iPhone */ 
    .post-section {
        width: 95%;
    }

.post-title {
    padding: 10px;
    box-shadow: 0px 0px 2px #e91e63d9;
    width: 95%;
    border-radius: 8px;
    margin: 0px;
    margin-bottom: 20px;
    font-size: 100%;
    text-align: center;
}

}