body {
  background: linear-gradient(
    to right,
    rgb(36, 45, 57) 11.2%,
    rgb(16, 37, 60) 51.2%,
    rgb(0, 0, 0) 98.6%
  );
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.container {
  margin: 50px auto;
  max-width: 600px;
  background-color: #e1f0fa;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(124, 11, 86, 0.753);
  padding: 20px;
}
header {
  margin-bottom: 30px;
}
h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  color: #2c3e50;
  text-align: center;
}
form {
  padding: 30px;
  color: white;
  border-radius: 10px;
  display: flex;
}
.recipes-input {
  width: 80%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
  font-size: 16px;
}
.submit-input {
  width: 30%;
  padding: 10px;
  border-radius: 20px;
  border: none;
  background-color: #51c1f5;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 15px;
}
.hidden {
  display: none;
}
.recipe {
  font-size: 16px;
  line-height: 1.2;
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid #0a0a0a;
}
footer {
  margin-top: 30px;
  text-align: center;
  color: #2c3e50;
  font-size: 14px;
}
