body {
  background-color: aliceblue;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1 {
  text-align: center;
  color: #132743;
  font-weight: 600;
}

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

.container {
  display: block;
  margin: 20px 300px;
  background: #fcf8f3;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.form-container {
  background-color: #680747;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #e0ebeb;
}

.recipe-container {
  background-color: #680747;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #e0ebeb;
  line-height: 2;
  font-size: 14px;
}

.hidden {
  display: none;
}

.enter-field {
  padding: 15px;
  width: 60%;
  border-radius: 30px;
  font-size: 15px;
  border: none;
}

.submit-field {
  padding: 15px;
  width: 30%;
  border-radius: 30px;
  font-size: 15px;
  border: none;
}

.hint {
  margin-top: 100px;
}

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

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