.status-msg-wrap,
.blog-pager,
.blog-feeds,
.widget-item-control {
    display: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h3.post-title.entry-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: tomato;
}

.main-con {

    padding: 0px 30px 30px 30px;
    margin-top: 55px;
    width: 100%;
}

.side-link {
    width: 20%;
    position: fixed;
    right: 0;
    top: 10%;
}

.df {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    background: aquamarine;
    height: 500px;
}

.df a {
    flex-grow: 1;
    text-decoration: none;
    padding: 4px 8px;
    display: flex;
    margin: 5px;
    font-size: 16px;
    color: black;
    text-transform: capitalize;
    font-family: sans-serif;
}

textarea#text1 {
    text-align: center;
    margin: 10px auto;
    display: block;
    width: 51%;
    padding: 10px 0;
    padding-top: 21px;
    resize: none;
    outline: none;
    font-size: 18px;
    border: 4px solid #b5c71a;
    color: #b5c71a;
    border-radius: 41px;
}

input {
    width: 100%;
    padding: 25px 0;
    text-align: center;
    outline: none;
    border: 2px solid #c3bbbb;
    font-size: 18px;
}

input[type="text"] {
    width: 100%;
    padding: 25px 0;
    text-align: center;
    outline: none;
    border: 2px solid #c3bbbb;
    font-size: 18px;
    color: #ec2525;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #d80286db;
    -webkit-transition: ease-out 0.4s;
    border-radius: 50px;
}

input[type="text"]:hover {
    box-shadow: inset 0 0 0 50px #d80286db;
    color: #fff;
    font-size: 17.5px;
}

button.btn1 {
    width: 30%;
    display: block;
    padding: 14px 0;
    color: #fff;
    background: #b5c71a;
    font-size: 17px;
    outline: none;
    border: 1px solid #c2c2c2;
    margin: 12px auto;
    cursor: pointer;
    border-radius: 25px;
    text-transform: uppercase;
}

/*other tools*/
.other-sites {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.other-sites a {
    border: 1px solid #fff;
    background: #2e2b2b;
    color: #fff;
    text-decoration: none;
    justify-content: center;
    display: block;
    padding: 4px 6px;
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
  
    textarea#text1 {
        font-size: 17px;
        width: 90%;
    }

    footer {
        padding: 20px 5px;
    }

    .data p,
    .data li {
        font-size: 16px;
        line-height: 1.4;
    }

    .textarea-box {
        width: 100%;
        position: fixed;
        bottom: 0;
        padding: 5px 0;
        background: rgb(53, 230, 237);
        background: linear-gradient(90deg, rgba(53, 230, 237, 1) 34%, rgba(228, 255, 141, 1) 96%);
    }

    .share {
        margin-top: 10px;
    }

    .data {
        margin-bottom: 100px;
    }
}

@media (max-width: 860px) {
    .main-con {
        width: 100%;
    }

    .side-link {
        width: 100%;
        position: relative;
        right: 0;
        margin-top: 50px;
    }

    .df {
        flex-direction: row;
        display: flex;
        flex-wrap: wrap;
        background: aquamarine;
        height: fit-content;
        justify-content: center;
    }

    .df a {
        justify-content: center;
        border-bottom: 1px solid #6e6e6e;
        padding: 6px 2px;
    }
}