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

.container{
    height:100vh;
    width:100%;
    display:flex;
    justify-content: center;
    align-items:center;
    padding:20px;
    background-color: black;
    color:white;
}
.left{
    height:100vh;
    width:50%;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction:column;
}
#html-code,#css-code,#js-code{
    height:30%;
    width:60%;
    background-color: rgb(77, 69, 69);
    color:white;
}
.right{
    height:100vh;
    width:50%;
    border:2px solid black;
    padding:20px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
label{
    color:white;
    display:flex;
    align-items:center;
    justify-content: flex-end;
}
#output{
        height:90vh;
        width:80%;
        background-color: white;;
}