#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgb(97, 72, 8); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #bf7113; /* Add a dark-grey background on hover */
}
* {
  margin: 0;
  padding: 0;
}
/* #recipe {
    
 } */
 
 /* Margin and padding Applies to entire page */
 * {
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  .navbar {
    /* border: 4px solid rgb(216, 49, 49); */
    border-bottom: 1px solid gray;
    height: 70px;
    display: flex;
    justify-content: space-between;
    background-color: white;
  }

  .left-nav {
     /* border: 4px dashed yellow; */ 
     height: auto;
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

 .logo a > img {
    width: 100px;
  }


 

  p {
    text-align: justify;
  }

  ol {
    text-align: justify;
  }

  .right-nav {
    display: flex;
    width: 70%;
    /* border: 4px dashed green; */
    justify-content: space-evenly;
    align-items: center;
  }


  .right-nav a {
    color: black;
  }
  .right-nav a:link {
    text-decoration: none;
  }
  .right-nav a:hover {
    color: rgb(248, 212, 123);
    text-decoration: underline;
  }
 
/* END OF HEADER */

/* body {
    background-image: url(images/Webpage_long-01.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    border: 2px red solid;
} */

#recipe h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 90px;
    color:  rgb(97, 72, 8);
    text-align: center;
    margin: 10px 0 10px;
}

#recipe h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 50px;
    color: rgb(248, 212, 123);
    margin-top: 50px;
}

#recipe h3 {
    line-height: 50px;
    font-size: 19px;
}

.mage {
    margin: 50px 30px 0 ;
    height: 600px;
}

.moose {
    /* border: 2px gray solid; */
    height: 900px;
    /* max-width: 1280px; */
    padding-left: 7%;
    padding-right: 7%;
    background-image: url('Images.jpg/recipe-images/Webpage-long-01.jpg');
   
  
    background-size: cover;
    background-position: bottom;
    display: flex;
}

.words {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0 30px 40px;
    color: bisque;
}

.dou {
    /* border: 3px wheat solid; */  
    width: 550px;
    float: left;
    height: auto;  
    padding-left: 50px;
}

.imgD{
    display: flex;
    align-items: center;
    justify-content: center; 
}

.head2 {
    font-family: 'Dancing Script', cursive;
    font-size: 50px;
    color: rgb(97, 72, 8) !important;
    margin-top: 50px;
}

.donut {
    /* border: 2px green solid; */
    display: flex;
    flex-direction: row-reverse;
    background-image: url('Images.jpg/recipe-images/Webpage_long-02.jpg');
    background-size: cover;
    background-position: top;
    padding-left: 7%;
    padding-right: 7%;
    
}

.words2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(56, 32, 13);
    text-align: justify;
    margin-left: 50px;
    /* border: 2px purple solid; */
}

.flan {
    /* border: 2px orange solid; */
    display: flex;
    flex-direction: row-reverse;
    background-image: url('Images.jpg/recipe-images/Webpage_long-03.jpg');
    background-size: cover;
    background-position: top;
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 7%;
    padding-right: 7%;
    height: 1200px;
}

/* changed 900 to 1500px */


.flan > img {
    margin: 90px 0px 0 120px;
    width: 70%;
}

ol > li {

    margin-bottom: 10px;

}


   /* START OF FOOTER */
   .footer-container {
    /* border-top: 1px solid gray; */
    /* border: 4px solid orangered; */
    height: 110px;
    margin-bottom: 0;
    margin-left: 70px;
    /* margin-top:100%; */
  }

    /* margin 100% from the top keeps it at the bottom */

    .footer {
      border-top: 2px solid#e7e9eb;
      height: 90px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      text-align: justify;
    }

    

    .footer-logos {
      /* border: 4px solid green; */
      display: flex;
      flex-direction: column;
      /* width:100px; */
      align-items: center;
      justify-content: center;
    }

    .footer-logos > img {
      width: 80px;
    }

    .follow-buttons {
      /* border:4px solid yellow; */
      width:90px;
      padding-top: 5px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
 
    }

    
    .follow-buttons a >img{
      width:15px;
    }

    .copyright {
      /* border: 4px solid red; */
      align-items: center;
      text-align: center;
      padding-right: 50px;
    }

    /* END OF FOOTER */

  .w3-animate-opacity{animation:opac 2.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
