* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #ffffff;
}
.container {
  width: 80vmin;
  padding: 50px 30px;
  background-color: #ffffff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(237, 121, 18, 1);
}
.stats {
  text-align: right;
  font-size: 18px;
  margin-bottom: 30px;
  color: #eb8a0c;
}
.stats span {
  font-weight: 600;
  color: #eb8a0c;
}
#quote {
  text-align: justify;
  margin: 50px 0 30px 0;
}
textarea {
  resize: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 16px;
}
button {
  float: right;
  margin-top: 20px;
  background-color: #eb8a0c;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
}
.result {
  margin-top: 40px;
  display: none;
  color: #eb8a0c;
}
.result h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #eb8a0c;
}
.wrapper {
  display: flex;
  justify-content: space-around;
}
.wrapper span {
  font-weight: 600;
}
.success {
  color: #eb8a0c;
}
.fail {
  color: #db1212;
}
