/** @format */

body {
  font-family: "Arial", Arial, Helvetica, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
  background-color: aquamarine;
}
.container {
  width: 100%;
  max-width: 700px;
  padding: 40px;
  text-align: center;
}

h1 {
  color: black;
  font-weight: 800;
  font-size: 60px;
  line-height: 1.5;
}

form {
  padding: 30px;
  border-radius: 10px;
  background-color: #1fd4e0;
  box-shadow: 0 4px 12px rgba(31, 30, 30, 0.1);
  display: flex;
  width: 100%;
  gap: 10px;
}
.ingredients {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}
.button {
  background-color: black;
  color: white;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}
.button:hover {
  opacity: 0.8;
}

.loading {
  text-align: center;
  padding: 20px;
}

.loading img {
  width: 120px;
  margin-bottom: 15px;
}

.loading p {
  font-size: 18px;
  font-weight: bold;
}

.hidden {
  display: none;
}
#recipe-result {
  margin-top: 50px;
  padding: 30px;
  background: #ffffff;
  border-left: 6px solid #1fd4e0;
  border-radius: 12px;
  text-align: left;
  line-height: 1.9;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#recipe-result h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

footer {
  margin-top: 30px;
  font-size: 14px;
}

footer a {
  color: black;
}
