.section-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: auto;
}

.modal-box {
    display: flex;
    flex-direction: column;
    width: 85vw;
    align-items: center;
    -webkit-box-shadow: 5px 6px 15px 0px rgba(105, 105, 105, 0.45);
    box-shadow: 5px 6px 15px 0px rgba(105, 105, 105, 0.45);
    padding: 4vw;
    box-sizing: border-box;
}

.modal-box .tick-icon {
    margin: 30px auto;
    width: 25%;
    display: flex;
    justify-content: center;
}

.txt {
    font-size: 25px;
    color: #de1122;
    font-weight: bold;
    margin: 10px 0;
}

.txt2 {
    font-size: 16px;
    margin: 10px;
}

header,
footer {
    display: none!important;
}

.logout {
    color: white!important;
    background-color: #de1122;
}

.logout,
.viewblog,
.addnew {
    display: flex!important;
    border: 1px solid #de1122;
    color: #de1122;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    margin: 10px auto;
    width: 37vw;
    height: 35px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media screen and (min-width: 641px) {
    .section-inner {
        width: 420px;
    }
    .modal-box {
        width: 85%;
        padding: 50px;
    }
    .logout,
    .viewblog,
    .addnew {
        width: 180px;
    }
    .modal-box .tick-icon img {
        width: 100%;
    }
}