@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-color: #bbe0c4;
  height: 100vh;
}

header {
  padding: 1rem 2rem;
  background-color: #1c2042;
  color: #fff;
}

section {
  margin: 5rem 0;
}

textarea {
  margin: 2rem 0;
  display: block;
  width: 100%;
  padding: 2rem;
  height: 10rem;
  resize: none;
  color: #1c2042;
}

button {
  background-color: #1c2042;
  color: #fff;
  padding: 10px 25px;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease;
}

button:hover,
button:active {
  transform: scale(1.05);
}

.output {
  margin-top: 2rem;
  text-align: center;
}

.output h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.output-container {
  width: 100%;
  height: 18vh;
  border: 2px solid #1c2042;
  margin: 2rem 0;
  padding: 2rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
}