@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;600&display=swap");

* {
  box-sizing: border-box;
 font-family: 'Rubik', sans-serif;
font-weight: normal;
 
}

#findReplace {
  display: flex;
  flex-direction: column;
  border: solid 1px rgb(204, 204, 204);
  width: fit-content;
  padding: 1rem;
}

#findReplace>span {
  display: flex;
  height: 2rem;
  align-items: center;
  gap: 0.3rem;
}

#findReplace>button {
  width: fit-content;
}

.highlight {
  background-color: yellow;
}
#outputTextArea{
  background-color: rgb(204, 204, 204);
  border-radius: .4vmax;
  padding: 1rem;
}