body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: sans-serif;
}

.container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.editors {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #2a0049;
  color: white;
  border-right: 2px solid #2a0049;
}

.preview {
    flex: 1;
}

.editor-html, .editor-css, .editor-js {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #1a0032;
    color: white;
}
#html, #css, #js {
    height: 100%;
}

.header {
    background-color: #2a0049;
    padding: 0 2.5rem;
}

.editors .codeflask {
    position: relative;
}


#preview {
  width: -webkit-fill-available;
  border: 0;
  height: 100%;
}