*{
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: baloo;
    src: url(BalooPaaji-Regular.ttf);
}
.tabs button{
    font-family: baloo;
    border: 2px solid black;
    width: 100px;
    padding: 5px;
    position: relative;
    top: 10px;
}
.btn-lang:active{
    border: 3px solid blue;
}
#btn-html{
    position: relative;
    left: 10px;
    border-radius: 5px 0 0 5px;
    background-color: rgb(255, 51, 0);
    color: white;
}
#btn-html:active{
    border: 3px solid blue;
}
#btn-js{
    position: relative;
    left: -10px;
    border-radius: 0 5px 5px 0;
    background-color: rgb(235, 235, 0);
}
#btn-css{
    background-color: rgb(0, 0, 204);
    color: white;
}
.main-div{
    height: 93vh;
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: 20px;
}
.tabs{
    border: 1px solid black;
    height: 9%;
    width: fit-content;
    border-radius: 5px 5px 0 0;
    background-color: black;
}
.allow{
    position: absolute;
    top: 29px;
    left: 25%;
    border: 2px solid black;
    color: white;
    font-family: baloo;
    background-color: black;
    border-radius: 0 3px 0 0;
    width: 100px;
}
.code-flex{
    border: 1px solid black;
    height: 90%;
    display: flex;
    border-radius: 0 5px 5px 5px;
}
.code-area, .output-preview{
    border: 1px solid black;
    width: 50%;
}
.code{
    width: 100%;
    height: 100%;
    resize: none;
    outline: none;
}
#code-css, #code-js{
    display: none;
}
#frame{
    width: 99%;
    height: 99%;
    resize: both;
    max-width: 100%;
    max-height: 99%;
    border: 3px solid #dddddd;
}
