body {
  font-family: Tahoma, sans-serif;
}
/* Ensures the container fills the entire viewport */
.screen-container {
  display: flex;
  width: 100vw;

}

/* Forces both sections to take up exactly 50% width */
.left-space, .right-box {
  flex: 1; 
}

/* Styles the text box container and centers the textarea inside it */
.right-box {
  padding: 30px;
  background-color: lightgrey;
}



