*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background:black ;
    color: white;
}


.container{
    width: 100%;
    height: 100vh;
    padding: 20px;
    display: flex;
}

.left, .right{
    flex-basis: 50%;
    padding: 10px;
}

textarea{
    width: 100%;
    height: 28%;
    background: #404040;
    color: white;
    padding: 10px 20px;
    border: 0;
    outline: 0;
    font-size: 18px;
}

iframe{
    width: 100%;
    height: 95%;
    background: white;
    border: none;
    outline: none;
}
label{
    color: rgb(165, 163, 163);
    display: flex;
    align-items: center;
    background: #191919;
    height: 30px;
}

label .code-icon{
    margin-left: 4px;
}

label ion-icon{
    align-items: center;
    font-size: 18px;
    margin-left: 10px;
    margin-right: 8px;
}
label .html-icon{
    color: orangered;
}
label .css-icon{
    color: #264de4;
}
label .js-icon{
    color: #ffd133;
}
