*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body{
    width: 100%;
    height: 100vh;
}

.code-edditer-Container{
    width: 100%;
    height: 70%;
    background-color: rgb(12, 17, 20);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    overflow: auto;
}

.code-edditer{
    width: 450px;
    height: 450px;
    background-color:  rgb(12, 17, 20);
    box-shadow: 2px 2px 10px black;
    border: 2px solid rgba(255, 255, 255, 0.416);
    border-radius: 20px;
    overflow: auto;
    position: relative;
}

.head-edditer{
    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.762);
    font-size: 20px;
}

.left-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  
}
.right-head{
    transition: all 0.5s;
    cursor: pointer;
}

.right-head img:hover{
    scale: 120%;

}

.code-edditer textarea{
    width: 100%;
    height: calc(100% - 80px);
    background-color:  rgb(12, 17, 20);
    border: none;
    position: absolute;
    bottom: 0;
    outline: none;
    color: white;
    padding: 20px;
    resize: none;
    font-size: 20px;
}

.output-Container{
    width: 100%;
    height: 30%;
    box-shadow: 2px -4px 10px rgb(113, 125, 137);
    color: rgba(255, 255, 255, 0.762);
    font-size: 20px;
    z-index: 2;
    position: fixed;
    bottom: 0;
    transition: all 0.6s;
  
  

}
.output-head{
    width: 100%;
    height: 60px;
    background-color:  rgb(12, 17, 20);
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    padding: 20px;
}
.output-head{
    transition: all 0.5s;
    cursor: pointer;
}

.output-head img:hover{
    scale: 120%;

}

#output{
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: white;
}


.output-full-active{
height: 100%;
}

#full{
    transition: all 1s;
}

.html-input::selection{
    background-color: rgb(195, 58, 193);
    color: rgb(0, 0, 0);
}
.css-input::selection{
    background-color: rgb(62, 124, 34);
}
.js-input::selection{
    background-color: rgb(76, 65, 180);
}