body {
  background-color: #f4e9f5e3;
  font-family: Helvetica, Arial, sans-serif;
}

a {
  color: rgb(150, 167, 210);
}
.container {
  margin: 120px auto;
  max-width: 600px;
  /* background-color: rgb(205, 216, 228);*/
}
s header {
  margin-bottom: 30px;
}

h1 {
  font-weight: 800px;
  font-size: 36px;
  line-height: 1.5;
  color: rgb(50, 66, 81);
  text-align: center;
}

.form-container {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0px, 20px, 60px rgba(65, 50, 100, 0.08);
  margin-bottom: 30px;
  padding: 15px 20px;
}
form {
  display: flex;
}

.hint {
  line-height: 1.5;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.6;
}
.instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}
.submit-button {
  margin-left: 10px;
  background-color: rgb(182, 196, 231);
  border: none;
  width: 150px;
  border-radius: 50px;
  padding: 14px, 24px;
}
.generated-text {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid rgb(182, 196, 231);
  box-shadow: 0px, 4px, 30px, 0px rgba(65, 50, 100, 0.08);
}

.hidden {
  display: none;
}

.generated-text strong {
  color: rgb(143, 161, 207);
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

.blink {
  animation: blink-animation 1s steps(5, start);
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
