@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: navajowhite;
  color: white;
}

.container {
  display: flex;
}

.left,
.right {
  width: 50%;
  padding: 10px;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: -10px;
}

label {
  display: block;
  padding: 2px 0 2px 10px;
  background-color: gray;
  border-radius: 5px 5px 0 0;
  font-weight: 500;
}

i {
  margin-right: 5px;
}

.fa-html5 {
  color: orange;
}

.fa-css3-alt {
  color: blue;
}

.fa-square-js {
  color: yellow;
}

textarea {
  resize: none;
  width: 100%;
  height: 190px;
  padding: 10px;
  border: 2px solid gray;
  border-radius: 0 0 5px 5px;
}

iframe {
  width: 100%;
  height: 97%;
  background-color: white;
  border: 2px solid gray;
  border-radius: 0 0 5px 5px;
}

textarea:focus {
  outline: none;
}