body {
  height: 100vh;
  width: 100%;
  background: linear-gradient(#392e82, #845fcf);
  overflow: hidden;
  font-family: "Bebas Neue", serif;
  font-style: normal;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#greetingContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

h1 {
  font-weight: 100;
  font-size: 2rem;
}

#findrecipeBtn {
  font-family: inherit;
  width: 50%;
  border-radius: 10px;
  border: none;
  background-color: #9d4770;
  color: white;
  font-size: 1.5rem;
  padding: 2px;
  box-shadow: inset 3px 3px #813e5e;
  transition: filter 0.12s ease-in-out 0.12s;
}

#findrecipeBtn:hover {
  filter: brightness(0.8);
  cursor: pointer;
}

@media (min-width: 1600px) {
  h1 {
    font-size: 5rem;
  }

  #findrecipeBtn {
    font-size: 4.5rem;
    box-shadow: inset 10px 10px #813e5e;
  }
}
