*{
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

#container {
  min-height: 100%;
}

#main {
  overflow: auto;
  padding-bottom: 100px
}

#footer {
  background-color: #9400d3;
  position: relative;
  height: 100px;
  margin-top: -100px;
  clear: both;
}

header{
  min-height: 78px;
  background-color: #9400d3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

html{
  height: 100%;
}

main{
  position: absolute;
  top: 75px;
  width: 100%;
  min-height: calc(100vh - 150px);
  /* background-color: darkviolet; */
}

footer{
  min-height: 78px;
  background-color: #9400d3;
  /* 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;
}

nav{
  display: inline-block;
  width: calc(100% - 403px);
}

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; */
}

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{




.myForm{
  margin: 120px auto 0px auto;
  width: 80%;
  font-family: arial;
}

.form_input{
  width: 80%;
  margin: 10px auto;
}

.labal{
  width:20%;
  text-align: right;
  display: inline-block;
}

.input{
  width: 70%;
  display: inline-block;
}

.input input, .input select{
  width: 100%;
  padding: 10px;
}

#recepe{
  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;
  }
}
