body {
  background: #eaf6f6;
  font-family: "Montserrat", sans-serif;
  padding-top: 50px;
}
.container {
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
  background: #fcfefe;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
  text-align: center;
}
.recipe-form {
  display: flex;
  gap: 5px;
}
.input-data {
  border-radius: 6px;
  width: 80%;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}
.submit-button {
  border-radius: 6px;
  width: 20%;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  background-color: #f2910a;
  color: white;
  cursor: pointer;
}
.hint {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 5px;
}
.recipe {
  font-size: 18px;
  line-height: 1.5;
  background-color: #eeece8;
  border-radius: 8px;
  padding: 20px;
  border-left: #f2910a 2px solid;
}
.hidden {
  display: none;
}
footer {
  text-align: center;
  font-size: 14px;
}
.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;
  }
}
