@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");

* {
  margin: 0;
}

body {
  font-family: "Indie Flower", cursive;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  height: 5rem;
  background-color: #fae04b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

footer {
  height: 9rem;
  background-color: #fae04b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer > div {
  font-size: x-large;
}

textarea {
  font-family: "Indie Flower", cursive;
  width: 40%;
  height: 18%;
  margin: 3rem 30% 0 30%;
  padding: 5px;
  font-size: larger;
}

#translate-btn {
  font-family: "Indie Flower", cursive;
  font-weight: 600;
  width: 210px;
  height: 60px;
  margin: auto 30% 10px;
  background-color: #fae04b;
  border: none;
  cursor: pointer;
  font-size: large;
}

p {
  margin: 8px 30%;
}

#output {
  height: 4rem;
  width: 40%;
  margin: 0 30% auto 30%;
  font-size: large;
  padding: 10px;
  border: 1px solid black;
  overflow: scroll;
}
