body {
  background-image: url("https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?q=80&w=1081&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Montserrat", sans-serif;
}

.container {
  margin: 120px auto;
  max-width: 800px;
  background-color: rgba(179, 172, 171, 0.8);
}

h1 {
  text-align: center;
  font-size: 50px;
  line-height: 1.5;
  color: white;
  padding: 15px;
}

form {
  border-radius: 40px;
  padding: 10px;
  display: flex;
  margin-bottom: 30px;
}

.ingredients {
  padding: 16px;
  border: none;
  border-radius: 20px;
  width: 600px;
  margin-left: 30px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 20px;
}

.get-recipe-button {
  background: black;
  color: white;
  border: none;
  width: 120px;
  font-size: 16px;
  border-radius: 20px;
}

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

.recipe {
  font-size: 16px;
  font-weight: 600;
  color: white;
  padding: 20px;
  line-height: 1.5;
  text-align: center;
}

footer {
  padding: 15px;
  margin: 30px auto;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

a {
  color: black;
}
