@keyframes fadeIn {
            to {
                opacity: 1;
            }
}

.button {
  background-color: grey;
  text-shadow: 3px 3px #484;
  color: white;
  width: 25%;
}
.button:hover {
  background-color: white;
  color: black;
}
.button:active {
  background-color: #062;
  color: black;
}
.center {
  margin: auto;
  width: auto;
  text-align: center;
}

html {scroll-behavior: smooth;}

body {
  background-color: #000;
  background-attachment: fixed;
  background-size: 100%;
  font-family: courier new;
  padding: 2%;
}

footer {
  padding: 20px;
  text-align: center;
  color: #FFF;
}
a {
  color: #40F;
  text-decoration: none;
}
a:hover {
  color: blue;
  text-decoration: underline;
}
a.footer {
  color: #15cfa6;
}
a.footer:hover {
  box-shadow: 0 0 15px 7px #0ff,  /* inner white */
              0 0 25px 15px #f0f, /* middle magenta */
              0 0 45px 22px #00f;
}
a.navlink {
  color: #FFF;
  text-decoration: none;
}
h2 {
  text-shadow: 3px 3px #A00;
  color: #BAA;
  font-size: 44px;
  width: 100%;
  text-align:center;
}
h3 {
  color: #000;
  font-size: 22px;
  width: 100%;
  text-align:center;
}
h4 {
  color: #000;
  font-size: 18px;
}

img {
  display: block;
  margin: auto;
  width: 50%;
}
input[type=submit] {
  padding: 14px;
  margin: 8px 0;
  border-radius: 20px;
  cursor: pointer;
  background-image: linear-gradient(wheat, white);
}
input[type=submit].home {
  width: 70%;
  }
input[type=text] {
  width: 70%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 24px;
}
input[type=text]:focus {
  box-shadow: 0 0 15px 5px #fff,
              0 0 20px 8px #0ff,
              0 0 30px 12px #00f;
}
div {
  background-color: #FFF;
  color: #000;
  font: bold;
  padding: 20px;
}
div.container {
  display: flex;
  justify-content: center;
  align-items: center;

}
div.flexgrid {
  width: 240px;
  color: #000;
  /*border: 2px solid green;*/
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin: auto;
}
div.flexbutton {
  width: 240px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin: auto;
}
div.flexbutton:hover{
  background-image: linear-gradient(#aaf, white);
  box-shadow: 0 0 15px 7px #0ff,  /* inner white */
              0 0 25px 15px #f0f, /* middle magenta */
              0 0 45px 22px #00f;
}
div.heading {
  width: auto;
  background-color: #000;
  padding: 2%;
}
div.pagediv {
    width: auto;
    background-color: #FFF;
    color: #102;
    text-align: left;
}
div.result {
  width: 70%;
}
img {
  width:auto;
  height:auto;
  margin: auto;
  display: inline-block;
}
p {
  font-size: 18px;
  font-style: bold;
}
p.copyright {
  font-size: 10px;
}
span {
  padding: 1px;
  border-radius: 4px;
}
span.logo {
  background-color: #FFF;
  color: #A00;
  font-weight: bold;
}
span.tag {
  background-color: purple;
  color: #FFF;
  font-size: 10px;
}
span.recipeURL {
  font-size: 10px;
}
span.query {
  color: #888;
}