* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #5b6fa6;
}
.heading{
  text-align: center;
  margin: 40px;
  font-size: 1.5rem;
  color: #ffffff;
}
.container {
  width: 70%;
  height: 650px;
  padding: 50px 40px;
  background-color: #ffffff;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.15);
}
.stats {
  text-align: right;
  font-size: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.stats span {
  font-weight: 900;
  color: #e81c4e;
  font-size: 1.2rem;
}
#quote {
  text-align: justify;
  margin: 50px 0 30px 0;
  font-size: 25px;
  font-weight: 700;
}
textarea {
  resize: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 20px;
}
textarea::placeholder {
  text-align: center;
}
button {
  float: right;
  margin-top: 20px;
  background-color: #14a73e;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
}
.result {
  margin-top: 30px;
  display: none;
}
.result h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.wrapper {
  display: flex;
  justify-content: space-around;
}
.wrapper span {
  font-weight: 600;
  color: #16873a;
  font-size: 1.3rem;
}
.success {
  color: #16873a;
}
.fail {
  color: #e81c4e;
}
