*{
  margin: 0;
  padding: 0;
}

header{
  min-height: 78px;
  position: fixed;
  background-color: #52a2a1;
  top: 0;
  left: 0;
  width: 100%
}
html{
  height: 100%
}

main{
  height: (100vh - 150px);
  background-color: aqua;
  width: 100%
}

footer{
  min-height: 78px;
  backgrund-color: #338f6e;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

h1.logo{
  font-family: 'Lobster', cursive;
  color: #FFFFFF;
  display: inline-block;
  margin: 13px 0px 10px 20px;
  text-shadow: 2px 2px black;
}

nav{
  display: inline-block;
  width: calc(100% - 511px);
  }

nav ul{
  display: flex;
  justify-content: space-evenly;
}

nav ul li{
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 1px 1px black;
}

nav ul li a: hover {
    text-shadow: -1px -1px black;
    transition: all 0.5s ease-in-out;
}

nav ul li p {
    font-family: sans-serif;
    font-weight: bold;
    color: gold;
}

img{
  margin:0;
  padding:0;
}

#recipe{
  width: 100%;
  height: 150px;
  border-radius: 15px;
  padding: 15px;
}
