body {
  margin: 0 auto;
  background-position: absolute;
  background-size: cover;
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(healthy-diet-foods.jpg);
  background-color: rgb(207, 236, 220);
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  margin: 20px auto;
  max-width: 600px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

header {
  margin-top: 50px;
}

h1 {
  padding: 20px;
  text-align: center;
  color: seagreen;
  font-weight: 800px;
  font-size: 65px;
  line-height: 1.5;
  text-shadow: white 1px 0 1px;
}

form {
  padding: 20px;
}

input {
  font-size: 16px;
  padding: 16px;
  border: 1px solid lightgray;
  border-radius: 30px;
  width: 60%;
}

button {
  padding: 16px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background-color: seagreen;
  color: white;
  width: 30%;
  margin-left: 10px;
}

.recipe {
  max-width: 600px;
  background: white;
  margin: 10px auto;
  font-size: 16px;
  padding: 20px;
  line-height: 2;
  border-left: 2px solid seagreen;
}

.recipe h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

footer {
  margin: 20px auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 16px;
  color: grey;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
}

a {
  text-decoration: underline;
  color: seagreen;
}

small {
  color: grey;
  padding: 20px;
}

.hidden {
  display: none;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
