.banner {
    width: 100%;
    height: 400px;
    position: relative;
    background: #e7e7e7;
    background-size: cover;
    background-position: center;
}


.banner-upload-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.banner-upload-btn img {
    width: 30px;
}



.blog {
    width: 70%;
    min-width: 400px;
    height: 100px;
    display: block;
    margin: auto;
    padding: 50px 0;
}



textarea::-webkit-scrollbar {
    width: 10px;
}


textarea::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


.title,
.article,
.email,
.social-media {
    width: 100%;
    min-height: 100px;
    height: auto;
    outline: none;
    font-size: 50px;
    font-weight: 600;
    color: #2d2d2d;
    resize: none;
    border: none;
    padding: 10px;
    border-radius: 10px;
}



.title::placeholder,
.article::placeholder {
    color: #2d2d2d;
}



.article {
    height: 500px;
    font-size: 20px;
    margin-top: 20px;
    line-height: 30px;
    font-weight: 500;
    padding-bottom: 100px;
    white-space: pre-wrap;
}


.email {
    height: 20px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    white-space: pre-wrap;
}



.social-media {
    height: 20px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    white-space: pre-wrap;
}



.blog-options {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pay-options {
    display: none;
    background: #424141;
    color: white;
    border: 2px solid;
    text-align: center;
    position: fixed;
    bottom: 8rem;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    height: 50%;
    padding: 3rem;
    box-shadow: 2px 2px 2px white;
}


.pay-heading {
    margin-top: 3rem;
}


.pay-options .btn.dark {
    margin-top: 10px;
}


.btn {
    border:  none;
    outline: none;
    cursor: pointer;
}


.btn.grey {
    background: #a5a5a5;
    color: #fff;
    margin-left: 20px;
    font-size: 14px;
} 



@media (max-width: 385px){

    .blog {
        width: 30%;
        min-width: 300px;
        
    }
    .pay-options {
        height: 30%;
    }


    .pay-heading {
        margin-top: 2rem;
    }
}




@media (max-width: 302px){

    .blog {
        width: 20%;
        min-width: 200px;
    }

    .btn {
        padding: 10px 10px;
    }
}


@media (max-width: 202px){

    .blog {
        width: 15%;
        min-width: 150px;
    }
}