body {
  background-color: #455d7a;
  font-family: Arial, Helvetica, sans-serif;
}

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

h1 {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  color: white;
}

main {
  margin-bottom: 30px;
}

p {
  font-size: 20px;
  color: white;
}

.form-container {
  padding: 35px;
  background-color: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  margin-bottom: 30px;
  color: #455d7a;
}
.example {
  margin-top: 7px;
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.5;
}

form {
  display: flex;
}

.ingredient-entry-form {
  color: #455d7a;
  padding: 7px;
  margin-right: 30px;
  border-radius: 12px;
  border: 1px solid #455d7a;
  width: 80%;
  font-size: 15px;
  line-height: 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-button {
  margin-left: 10px;
  padding: 7px;
  border-radius: 12px;
  background-color: #455d7a;
  border: none;
  font-size: 15px;
  color: white;
  width: 20%;
}
.recipe {
  background-color: white;
  font-size: 18px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  padding: 20px;
  line-height: 1.5;
  border-left: 3px solid #f95959;
}
.hidden {
  display: none;
}

footer {
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  text-align: center;
}
a {
  color: #f8f398;
}
