body {
  background-color: #f0ebe3;
}

.generator-body {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 30px;
}

h1 {
  color: #e83c91;
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
}

.form-small-div {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(65, 50, 100, 0.08);
}

.feelings-form {
  display: flex;
}

.form-search-input {
  padding: 16px;
  border: 1px solid #f0ebe3;
  width: 388px;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #e83c91;
  flex: 0 0 50%;
}

.form-submit-button {
  margin-left: 10px;
  background: #ddaed3;
  color: #213c51;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 12px 22px;
  flex: 0 0 auto;
}

.form-submit-button:hover {
  background: #213c51;
  color: #ddaed3;
  cursor: pointer;
}

small {
  color: #ddaed3;
}

.hidden {
  display: none;
}

.motivation {
  font-size: 16px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #213c51;
  border-right: 3px solid #213c51;
  box-shadow: 0 4px 30px 0 rgba(39, 33, 66, 0.05);
  margin-top: 28px;
}
.motivation strong {
  color: #e83c91;
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}

a {
  color: #e83c91;
}
.hidden {
  display: none;
}
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
