* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.input,
.output {
  flex-basis: 50%;
  height: 100vh;
}

.input {
  background-color: #191919;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.editor {
  flex-direction: column;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-left: 10px solid #252744;
  border-right: 10px solid #252744;
}

.editor textarea {
  height: 100%;
  resize: none;
  background: none;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  font-family: "Cascadia Code";
}

.editor label {
  background-color: #252744;
  color: #fff;
  padding: 5px;
}

i {
  margin-right: 7px;
}

.output {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 10px solid #252744;
  border-top: 0;
}

.output label {
  color: #fff;
  padding: 5px;
  background-color: #252744;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}
