:root {
  /* overflow: hidden; */
  font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  scroll-padding: 15vh;
}

::selection {
  background: rgba(255, 255, 255, 0.3)
}

body {
  width: 100%;
  display: flex;
  font-size: clamp(1rem, 0.5rem + 1.6vw, 1.25rem);
  line-height: 1.2;
  margin: 0;
}

.editor {
  display: block;
  padding: 0 calc(50vw - 22rem);
  border: 0 solid transparent;
  border-width: 15vh 1rem 15vh;
  min-height: calc(100vh - 15vh - 15vh);
  font: inherit;
  color: inherit;
  background: transparent;
  resize: none;
  box-shadow: none;
  outline: 0;
  border-radius: 0;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
}

.editor.clone {
  box-sizing: border-box;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  -webkit-font-smoothing: none;
  top: 0;
  border-top: 0;
  border-bottom: 0;
  z-index: -1;
}
