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

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

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: black;
}

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

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
  padding: 15px 20px;
}

a {
  color: #db67db;
}

form {
  display: flex;
}

.instructions {
  padding: 16px;
  width: 80%;
  border: 3px solid;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #db67db;
}

.submit-button {
  margin-left: 10px;
  background: #db67db;
  color: white;
  border: none;
  border-radius: 50px;
  width: 150px;
  font-size: 16px;
  padding: 14px 24px;
  cursor: pointer;
}

.recipe {
  font-size: 14px;
  background-color: white;
  padding: 20px;
  line-height: 24px;
  border: 3px solid #db67db;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  font-style: italic;
}

.recipe strong {
  color: #db67db;
}

.hidden {
  display: none;
}

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

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

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