body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/179/372/original/pexels-israyosoy-30877414.jpg?1775027508z");
}

a {
  color: #885df6;
  font-weight: 600;
}

header {
  margin-bottom: 30px;
}

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

h1 {
  font-weight: 800px;
  font-size: 36px;
  line-height: 1.5;
}

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

form {
  display: flex;
}

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

.instruction {
  padding: 16px;
  border: 1px solid rosybrown;
  width: 80%;
  font-size: 16px;
  line-height: 20px;
  color: rosybrown;
  border-radius: 50px;
}

.submit-button {
  margin-left: 10px;
  background: wheat;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 16px;
  width: 120px;
  color: rgba(red, green, blue, alpha);
}

.recipe {
  font-size: 14px;
  background-color: antiquewhite;
  padding: 20px;
  line-height: 27px;
  border: 1px solid rosybrown;
  box-shadow:
    0px,
    20px,
    60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
}

.hidden {
  display: none;
}

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

.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;
  }
}
