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

:root {
  --primary-color: #00b1b1;
  --btn-color: #de791b;
}

* {
  margin: 0;
}

body {
  position: relative;
  font-family: "Sniglet", cursive;
}

header {
  width: 100%;
  height: 15vh;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: x-large;
}

header > p {
  padding: 10px;
}

#logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

main {
  width: 45%;
  height: 65vh;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

main > p {
  padding: 10px;
}

#input {
  width: 100%;
  height: 15vh;
  padding: 8px;
  margin: auto;
  font-family: "Sniglet", cursive;
  font-size: large;
}

#translate-btn {
  width: 170px;
  height: 50px;
  border: none;
  background-color: var(--btn-color);
  cursor: pointer;
  font-family: "Sniglet", cursive;
  font-size: larger;
}

#output {
  width: 100%;
  height: 10vh;
  padding: 10px;
  overflow: scroll;
  border: 1px solid black;
  margin: 0 0 auto 0;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
}

#platypus {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20vh;
  padding: 10px;
  background-color: var(--primary-color);
  position: fixed;
  bottom: 0;
  left: 0;
}

footer > p {
  width: 45%;
  padding: 10px;
  min-width: 300px;
}

#about {
  font-size: larger;
}
