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

a {
  color: purple;
}
.container {
  margin: 125px auto;
  max-width: 625px;
  text-align: center;
}

header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 775;
  font-size: 38px;
  line-height: 2;
  color: #272044;
}

.form-container {
  background-color: orangered;
  margin-bottom: 32px;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  text-align: left;
}

form {
  display: flex;
}

.hint {
  line-height: 2;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.5;
}
.instructions {
  padding: 18px;
  border: 1px solid (grey);
  width: 80%;
  font-size: 14px;
  border-radius: 50px;
  line-height: 25px;
  color: blue;
}

.submit-button {
  margin-left: 12px;
  background: green;
  color: white;
  border: red;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
}

.recipe {
  font-size: 16px;
  background-color: rgb(238, 235, 68);
  padding: 12px;
  line-height: 26px;
  border-left: 3px solid #60ca80;
  box-shadow: 0px 20px 40px rgba(65, 58, 100, 0.08);
}

.hidden {
  display: none;
}

.recipe strong {
  color: #885df1;
}

footer {
  text-align: center;
  font-size: 15px;
  margin-top: 28px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
}
