body {
  font-family: Raleway;
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #dddddd;
}

.translation {
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .translation {
    flex-direction: row;
    justify-content: space-between;
  }
}
.translation__input-container {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .translation__input-container {
    width: 48%;
  }
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

h1,
h3 {
  text-align: center;
}

label {
  font-size: 24px;
}

.instructions,
.fun-facts {
  width: 90%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

div > p:first-child {
  font-weight: bold;
  font-size: 20px;
}

#resetBtn {
  margin: auto;
  display: block;
  font-size: 20px;
  border-radius: 5px;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-container :nth-child(1) {
  order: 1;
}
.content-container :nth-child(2) {
  order: 2;
}
.content-container :nth-child(3) {
  order: 3;
}
@media screen and (max-width: 600px) {
  .content-container :nth-child(1) {
    order: 3;
  }
  .content-container :nth-child(2) {
    order: 1;
  }
  .content-container :nth-child(3) {
    order: 2;
  }
}

/*# sourceMappingURL=style.css.map */
