body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: white;
}

.page-container {
  min-height: 100vh;
  background-color: #243a4f;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
}

.title {
  color: white;
  font-style: italic;
  font-size: 56px;
}

.main-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 50%;
}

.instructions-text {
  font-weight: normal;
  margin-top: 200px;
}

.text-field {
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
  min-width: 100%;
  font-size: larger;
  min-height: 60px;
  border: 2px solid black;
  resize: none;
}

textarea:focus {
  outline: none;
}

.submit {
  width: 120px;
  margin-top: 45px;
  height: 60px;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 26px;
  border-radius: 4px;
}

.submit:hover {
  background-color: white;
  color: #243a4f;
  cursor: pointer;
}

.translated-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.translated-text-title {
  display: none;
  font-weight: normal;
}

.translated-text {
  display: none;
  font-size: 26px;
  padding: 12px;
  text-align: center;
}
