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

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Glory", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  color: #141e61;
}

#container {
  background-image: url("images/minions.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: auto;
}

main,
h3,
h1 {
  text-align: center;
}

h3,
h1,
#btn-translate {
  margin: 2rem;
}

#txt-input {
  padding: 0 1rem;
}

.heading {
  margin: 1rem;
}

#output {
  margin: auto;
  padding: 2rem;
  width: 30vw;
  height: auto;
  border: 2px solid #000;
}

#btn-translate {
  padding: 1rem;
  font-size: 1.5rem;
  border-radius: 5rem;
  border-width: 2px;
  border: 2px solid #fff;
  background-color: #141e61;
  color: #fff;
}

#btn-translate:hover {
  transform: scale(1.2);
}
