body {
  background: #614385;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #516395, #614385);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #516395, #614385); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ 
}

a {
  color: rgb(173, 153, 181);
}

.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-size: 35px;
  line-height: 1.5;
  color: #dfd3d8;
  font-family: "Allura", cursive;
  font-weight: 400;
}

h6 {
  text-align: center;
  font-size: 18px;
  color: #dfd3d87a;
  margin-top: -25px;
}

.form-container {
  background-color: #a676b31f;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(138, 93, 132, 0.08);
  padding: 15px 20px;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
  font-family: "Playfair Display", serif;
}

.instructions {
  padding: 16px;
  border: none;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  font-family: "Questrial", sans-serif;
  background: linear-gradient(to right, #516395, #614385);
  -webkit-transition: box-shadow linear 0.2s;
  transition: box-shadow linear 0.2s, width 500ms ease;
}

.instructions:focus {
  outline: none;
  border-color: rgb(173, 153, 181);
  box-shadow: 0 0 10px rgb(173, 153, 181);
  width: 280px;
}

.instructions:hover {
  border-color: #9ecaed;
  box-shadow: 0 0 10px #9ecaed;
  width: 280px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgb(173, 153, 181);
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgb(173, 153, 181);
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgb(173, 153, 181);
}
:-moz-placeholder { /* Firefox 18- */
  color: rgb(173, 153, 181);
  opacity: 1;
}

.submit-button {
  margin-left: 10px;
  background: #a65bb14e;
  color: #dfd3d8;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: "Questrial", sans-serif;
  cursor: pointer;
}

.verse {
  font-size: 14px;
  background-color: #f15da21f;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #d69ab6;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
  font-family: "Questrial", sans-serif;
}

.hidden {
  display: none;
}

.verse strong {
  color: #c2699698;
  opacity: 0.9;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  font-family: "Questrial", sans-serif;
  opacity: 0.9;
}

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

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