.blogContainer{
    padding-top: 18%;
    background-color: rgb(249, 96, 175);
    background: linear-gradient(180deg,rgba(45, 45, 45, 0.55) 0%, rgba(45, 45, 45, 0.55) 60%, rgba(45, 45, 45, 0.55) 80%, rgba(255, 255, 255, 1) 100%) , url('../all_images/blog_back.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
}

.blogContainer form{
    margin-bottom: 10%;
}

.card{
    border: 3px solid rgb(249, 96, 175);
    /* border-radius: 60px; */
}


.blogContainer input:focus{
    outline: none;
}
.blogContainer input::placeholder{
    color: rgb(44, 43, 43);
    color: white;
}

.blogContainer h1{
    font-family: 'Times New Roman', Times, serif;
}

.allblogs a{
    background-color: rgb(249, 96, 175);
    color: white;
    transition: .3s;
}

.allblogs a:hover{
    background-color: #000000;
    color: white;
    transition: .3s;
}

@media only screen and (max-width: 786px) {
    .blogContainer{
        padding-top: 20%;
    }
}