body {
  background-color: #009440;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  margin: 20px auto;
  max-width: 600px;
  padding: 0 20px;
}

.image {
  width: 120px;
  max-width: 100%;
  height: auto;
}
h1 {
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: #ffcb00;
  text-shadow: 4px 4px 5px #302681;
}

main {
  margin-bottom: 30px;
}

form {
  display: flex;
  background-color: #ffcb00;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0px 10px 10px #302681;
  border-radius: 10px;
}

.instructions {
  padding: 16px;
  border: 3px solid #302681;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #009440;
  width: 100%;
  margin-bottom: 10px;
}

.submit-button {
  margin-left: 10px;
  border-radius: 50px;
  color: #ffcb00;
  background-color: #009440;
  border-width: 2px 4px;
  font-size: 16px;
  padding: 14px 24px;
}

.recipe {
  font-size: 16px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  line-height: 2;
  border-left: 10px solid #ffcb00;
  text-align: left;
}

.hidden {
  display: none;
}

.song {
  color: #ffcb00;
}

footer {
  font-family: monospace;
  font-size: 12px;
  margin-top: 20px;
}

a {
  color: #ffcb00;
  text-decoration: none;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .instructions {
    font-size: 14px;
    padding: 12px;
  }

  .submit-button {
    font-size: 14px;
    padding: 12px 20px;
  }

  .recipe {
    font-size: 14px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .instructions {
    font-size: 12px;
    padding: 10px;
  }

  .submit-button {
    font-size: 12px;
    padding: 10px 16px;
  }

  .recipe {
    font-size: 12px;
    padding: 10px;
  }

  form {
    padding: 10px;
  }
}
