/* Style for container */
#my-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

#my-input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  width: 200px;
  margin-right: 10px;
  flex: 1;
  height: 40px;
  box-sizing: border-box;
}

/* Style for output */
#my-output {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  // margin-top: 10px;
  width: 300px;
  flex: 1;
  min-height: 40px;
  box-sizing: border-box;
}