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

* {
  font-family: "Island Moments", cursive;
}

:root {
  --primary-color: #fff000;
}
body {
}
.container {
  background-color: var(--primary-color);
  width: 60%;
  height: 80vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-style: groove;
  border-color: black;
  border-width: 0.5rem;
  padding: 1rem;
}
h1 {
  font-size: 5rem;
}
#inputArea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  display: block;
  height: 20vh;
}
#btn-translate {
  font-family: "Montserrat", sans-serif;
  margin: 2rem 2rem;
  padding: 0.5rem 1rem;
}
.translate-discription {
  font-size: 3rem;
  font-weight: lighter;
}

#outputArea {
  font-family: "Montserrat", sans-serif;
  border: 1px solid black;
  width: 100%;
  height: 20vh;
  margin: 2rem;
}
