.logo {
    margin-left: 15px;
    margin-top: 12px;
}

.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--btnImg {
    width: 20px;
}

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

@media (max-width: 414px) {
    .blog {
        min-width: 350px;
    }

    textarea.title {
        font-size: 20px;
    }
}

.title,
.article {
    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;
}

/* scroll-bars */
textarea::-webkit-scrollbar{
    width: 10px;
}

textarea::-webkit-scrollbar-thumb{
    background: rgba(0, 0, 0, 0.1);
    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;
    /* use "white-space" otherwise we'll not be able to store the spaces in the database. */
}

.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;
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
}

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

.btn.dark {
    margin-left: 10px;
}

@media screen and (max-width: 730px) {
    .btn.dark{
        margin: 0;
        width: auto;
        float: left;
        display: block;
        text-align: center;
    }
}

img {
    margin-left: 0;
    margin-top: 0;
}

@media (max-width: 414px) {
  
    .blog__image {
        margin-left: 10px;
    }

    img {
        margin-top: 0;
    }
}