.blog .main_section {
    position: relative;
    width: 100%;
    height: 45vh;
}

.blog .main_section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.blog .main_section .text {
    position: absolute;
    bottom: 5%;
    left: 8%;
    font-size: 2.5em;
    line-height: 1.5em;
}

.blog .admin_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2em;
    margin: 2em;
}

.blog .content {
    margin: 5em 0;
}



/* media for phone */
@media screen and (max-width: 700px) {
    .blog .main_section .text {
        font-size: 24px;
    }

    .blog .admin_btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1em;
    }
}