@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

/**{
  margin:0;
  padding:0;
}*/

header{
  background-color: #62a5a1;
  /* height: 75px; */
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
}

html{
  height: 100%;
}

main{
  position:
  top: 75px;
  width: 100%;
  min-height: calc(100vh - 150px);
  /* background-color: aqua; */
}

footer{
  min-height: 78px;
  text-align: center;
  background-color: #62a5a1;
  /* position: fixed;
  bottom: 0;
  left: 0; */
  width: 100%;
}

h1.logo{
  font-family: 'Lobster', cursive;
  color: #FFFFFF;
  display: inline-block;
  margin: 13px 0px 0px 20px;
  text-shadow: 2px 2px black;
}

.Textcenter {
  text-align: center;
}

/* nav{
display: inline-block;
width: calc(100% - 313px);
} */

nav ul{
  display: flex;
  justify-content: space-evenly;
}

nav ul li{
  list-style: none;
  /* border: 1px black solid;
  padding: 10px;
  border-radius: 5px;
  background-color: gold; */
}
.question{
color:red;
font-size:25px;
font-family:sans-serif;
font-weight:bold;
}

.answer{
color:green;
font-size:20px;
font-family:sans-serif;
font-weight:bold;
}
table{
  /* margin-top: 75px; */
  width: 80%;
  margin: 75px auto;
}

nav ul li a{
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 1px 1px black;
  transition: all 0.5s ease-in-out;
}

nav ul li a:hover{
  text-shadow: -1px -1px black;
}

nav ul li p{
  font-family: sans-serif;
  font-weight: bold;
  color: gold;
}


img{
text-align: center;

}
.img{
  margin: 0 auto;
  width: 200px;
  height: 200px;
    background-image: url("../images/ginger.jpg")
    background-size: cover;
}

.myForm{
  margin: 120px auto 0px auto;
  width: 80%;
  font-family: arial;
}

.form_input{
  width: 80%;
  margin: 10px auto;
}

.label{
  width:20%;
  text-align: right;
  display: inline-block;
}

.input{
  width: 70%;
  display: inline-block;
}

.input input, .input select{
  width: 100%;
  padding: 10px;
}

#recipe{
  width: 100%;
  height: 150px;
  border-radius: 15px;
  padding: 15px;
}

#button{
  padding: 10px;
  border: none;
  background-color: #3F51B5;
  color: #FFFFFF;
  font-weight: 900;
  border-radius: 5px;
  height: 36px;
  width: 100%;
  letter-spacing: 3px;
  transition: all 0.5s ease-in-out;
}
#button:hover{
  transform: scale(1.05);
  background-color: #22348F;
}

.print{
  width: 100px;
  height: 50px;
  background-color: gray;
  border-radius: 10px;
  color: white;
  opacity: 0.5;
  margin-left: 50px
}

@media print {
  header, footer, img{
    display: none;
  }
}

div, li, ul, p, h2, h3, h4 {
  padding: 0px 20px 0px;
    margin: 0px 10px 0px;
  }

  .heading {
    font-size: 35px;
    line-height: 48px;
    font-weight: bolder;
  }
