*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background: #eee !important;
}
.main__container{
   
}
.nav-bar{    
    margin-bottom: 10px;
/*    position: sticky;*/
    top: 0;
    left: 0;
    right: 0;
    display: block;
}
.nav-bar .brand{
    background: #fff;
    text-align: center;
    padding: 8px;
}
.nav-bar .brand .beta{
    background: #ddd;
    margin: 1px;
    border-radius: 3px; 
    padding: 3px 6px; 
    font-size: 12px;
    font-weight: bold;
}
.nav__title{
    display: inline-block;
    color: #333;
    cursor: pointer;
    font-weight: 700;
    font-size: 22px;
}
.function__bar{
    background: #fff;
    text-align: left;
    padding: 8px 30px;
    margin-top: 1px;
    white-space: nowrap;
    overflow: auto;
}
.function__btn{
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 10px;
    background: #fff;
    outline: none; 
    margin: 0 2px;
    font-size: 14px;
    font-weight: 500;
}
.function__btn:hover{
    background: #000;
    color: #fff;
}
.editor__container{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.editor__wrapper{
    height: calc(100vh - 150px);
    width: 8in;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: ; */
    padding: 10px;
    border: 2px solid #aaa;
    margin: 10px;
}
#inputText{
    padding: 20px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    font-size: 20px;
}


#converterContainer{
    display: none ;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    overflow: auto;
    padding: 10px;
}
#closeBtn{
    position: absolute;
    top: 30px;
    right: 20px;
    outline: none;
    border: none;
    background: #fff;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #000;
    border-radius: 50%;
    line-height: 0px;
    padding-bottom: 3px;
    z-index: 10;
}
#closeBtn:hover{
    background: #000;
    color: #fff;
}


/*About Page Styling*/
.about__content{
    background: #fff;
/*    min-height: 600px;*/
    padding: 30px;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
}
.about_app{
    margin: 0 30px;
/*    background: #eee;*/
    border-radius: 8px;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.about_app p{
    line-height: 28px;
    font-size: 20px;
    word-wrap:break-word
}
.about__content .developer{
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    margin: 0 30px;
}
.about__content .developer p{
    padding: 5px 10px;
    font-size: 20px;
    border-left: 5px solid #888;
    background: #eee;
}
.about__content .developer p span{
    font-weight: bold;
}

.about__content .footer__menu{
    margin-top: 70px;
}

.about__content .footer__menu a
{
    background: #ddd;
    padding: 10px 10px;
    font-size: 18px;
    border-radius: 4px;
    color: #000;
}
.about__content .footer__menu a:hover
{
    background: #000;
    color: #fff;
}



@media only screen and (max-width: 600px){
    .about__content{
        margin: 10px;
        padding: 5px;
        width: 100%;
    }

    .about_app{
        margin: 0;
    }

    .about__content .developer{
        display: block;
    }
    .about__content .developer p{
        margin: 10px 5px;
    }
    #closeBtn{
        right: 3px;
        top: 3px;
    }
    .btn-md{
        font-size: 14px !important;
        padding: 2px 7px !important;

    }
    .bj__title{
        font-size: 20px !important;
        font-weight: bold;
    }
    .editor__wrapper{
    height: calc(100vh - 165px);
    }
}