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

.container {
    display: flex;
    justify-content: space-around;

}

.editors {

    text-align: center;
    background-color: rgb(0, 166, 200);
    color: white;
    width: 100%;
    
}

textarea {
    overflow: scroll;
    font-size: x-large;
    width: 100%;
    min-height: 300px;
}
iframe{
    width: 100%;
    height: 500px;
}
.output h1{
    text-align: center ;
}
.fa-html5{
    color: rgb(243, 218, 0);
}
.fa-css3-alt{
    color: rgb(0, 128, 255);
}
.fa-js{
    color: orange;
}


