@font-face {
  font-family: tradeGothic;
  src: url(../assets/fonts/trade_gothic.woff2);
}

body {
  font-family: tradeGothic;
  color: #767676;
}

h2 {
  font-size: 48px;
  letter-spacing: 9.38px;
  line-height: 1.2;
  color: black;
}

h3 {
  color: black;
}

.recipe-generator-form {
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  margin: 0 auto;
}

.empty {
  display: none;
}

.query-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px #9a9a9a;
}

.user-input {
  flex: 1;
  border: none;
  resize: none;
  border-radius: 5px;
  padding: 20px;
  font-size: 16px;
  background-color: #f8f8f8;
}

.user-input:focus {
  outline: none;
  box-shadow: 0 0 5px #66afe9;
}

.user-input::placeholder {
  color: #9a9a9a;
}

.recipe-response {
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.query-area button {
  width: 60px;
  border: none;
  align-self: normal;
  box-shadow: 15px 0px 20px 10px #9a9a9a;
  cursor: pointer;
}

.recipe-generator-form > *:nth-child(n) {
  margin-bottom: 40px;
}

@media only screen and (max-width: 600px) {
  /*For smaller screens, adjust the max-width of the recipe-container to better fit*/
  .recipe-generator-form {
    max-width: 400px;
  }
}

