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

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

header {
  margin-bottom: 30px;
}

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

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

form {
  display: flex;
}

.hint {
  font-size: 12px;
  margin-top: 8px;
  margin-left: 15px;
  opacity: 50%;
}

.instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 15px;
  border-radius: 12px;
  line-height: 20px;
  color: #295f4e;
}

.submit-button {
  margin-left: 10px;
  padding: 16px 16px;
  border-radius: 12px;
  border: 0px;
  background: #295f4e;
  color: white;
}

.recipe {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  font-weight: normal;
  border-left: 3px solid #295f4e;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
  border-radius: 5px;
}

.blink {
  animation: l1 2s linear infinite alternate;
}
@keyframes l1 {
  to {
    opacity: 0;
  }
}

a {
  color: #295f4e;
}

.hidden {
  display: none;
}

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