body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f1371 url("Love-Background-Images.jpg");
  background-size: cover;
  background-blend-mode: multiply;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
}

.main {
  background: #1b38526b;
  width: 600px;
  height: 70vh;
  border-radius: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input , .output{
  /* border: 2px solid #36b740; */
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#inputArea , #outputArea{
  width: 80%;
  height: 66%;
  background: transparent;
  color: wheat;
  border: 2px solid ;
  resize: none;
  padding: 15px;
  outline: none;
  font-size: larger;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
  width: 100%;
  color: wheat;
  font-size: x-large;
}

@media screen and (max-width: 600px) {
  .main {
    width: 90vw;
    height: 80vh;
  }

  #inputArea,
  #outputArea {
    width: 90%;
  }
}