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

body {
    height: 100vh;
    display: flex;
}

#langLogo {
    width: 30px;
    margin: 5px;
}

#preview-area {
    width: 50%;
    height: 100%;
}

#preview-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#code-area {
    width: 50%;
    height: 100%;
    background-color: #252525;
    resize: both;
}

#containerHTML,
#containerCSS,
#containerJS {
    /* position: inherit; */
    width: 100%;
    height: 33.33%;
    overflow: hidden;
    resize: both;
}