*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    width:100%;
    height: 100vh;
}

.code-editor-container{
    display: flex;
    width: 100%;
    height: 70%;
    background-color: rgb(12, 17, 20);
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap:20px;
    padding: 20px;
    overflow: auto;
}

.code-editor{
    width: 450px;
    height: 450px;
    background-color: rgb(12, 17, 20);
    box-shadow: 2px 2px 10px black;
    border: 2px solid rgb(255, 255, 255, 0.105);
    border-radius: 20px;
    overflow: auto;
    position: relative;
}

.head-editor{
    width: 100%;
    height: 60px;
    background-color: rgb(12, 17, 20);
    box-shadow: 2px 4px 10px black;
    border-radius: 0px 0px 40px 40px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.left-head span{
    color: rgba(255, 255, 255, 0.491);
    font-size: 20px;

    
}
.left-head{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}
.right-head img{
    transition: all 0.5s;
    cursor: pointer;
}

.right-head img:hover{
    scale:130%;
}
.code-editor textarea{
    width: 100%;
    height: calc(100% - 80px);
    background-color: rgb(12, 17, 20);
    color: white;
    font-size: 20px;
    padding: 20px;
    border: none;
     box-shadow: 2px -8px 10px rgb(36, 71, 72);
    position: absolute;
    outline: none;
    bottom: 0;
    resize: none;
}

.output-container{
    width: 100%;
    height: 30%;
    box-shadow: 2px -8px 10px rgb(36, 71, 72);
    color: rgba(255, 255, 255, 0.891);
    font-size: 20px;
    z-index: 1;
    position: fixed;
    bottom: 0;
    transition: all .5s;

}

.output-head{
    width: 100%;
    height: 60px;
    background-color: rgb(12, 17, 20);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: right;
    gap:20px;

}

.output-head img{
    transition: all 0.5s;
    cursor: pointer;
}

.output-head img:hover{
    scale:130%;
}
#output{
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: white;
}

.output-full-active{
    height: 100%;
}

.html-input::selector{
background-color: rgb(288,77,38);

}
.css-input::selector{
    background-color: rgb(34, 95, 139);
}

.javascript-input::selector{
    background-color:rgb(255,247,0) ;
    color:black;
}