
body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  background-color: #30251d;
}

a {
  color: #000;
}

/* header */

.header {
  background-color: #f1e6d8ff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #f1e6d8ff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #271c15;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}




h2{
  color: #f1e6d8ff;
  position:absolute;
}

a{
  text-decoration: none;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
}


.btn {
    display: inline-flex;
    align-items: center;  
    min-height: 44px;
    padding: 0 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    margin: 10px;
}


.btn-primary {
    background:#e08b63;
    color: #271c15;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  
  .btn btn-secondary {
    background: #221a15;
    color: #f1e6d8ff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 2px solid #f1e6d8ff;
  }
  
  .section-title{
  color: #f1e6d8ff;
  text-align: center;
  padding: 50px;
  }


/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

.recipe-image2{
  width: 80%;
  height: auto;
  border: 1px solid #f50d0d;
  padding: 10px;
  align-content: center;
  display: flex;
}

.plans-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}




   
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
   
.pantry{
  display: flex;
  width: 100%;
  padding: 10px;
}

.pantry-section{
  border: solid 1px aquamarine;
  width: 100%;
  height:vh;
  margin-bottom: 20px;
  align-content: right;
  margin: 10 5;
}



.sub-text{
  text-align: left;
  font-size: 16px;
  color:beige
}

/* h6{
  color: antiquewhite;
  font-size: 26px;
  color: beige;
  text-align: left;
  width: 100%;
  padding: 20px;
  margin-bottom: -120px;
} */

h7{
  color:antiquewhite;
  font-size: 26px;
  padding: 2px;
}


.headline {
display: flex;
justify-content: center;
align-items: center;
height: 230px;
color: #f1e6d8ff;
} 

.tag{
  display: inline-block;
  color:blanchedalmond;
  padding: 25px;
  margin: 5px;
  border-radius: 3px;
  /* margin-top: -200px; */
  text-align: center;
}

.recipe-image1{
  width: 90%;
  height: auto;
  border: 1px solid #f50d0d;
  padding: 10px;
}

.recipe-image2{
  width: 90%;
  height: auto;
  border: 1px solid #f50d0d;
  padding: 10px;
  clear: both;
}

.pic1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.caption{
  text-align: center;
  color: #f1e6d8ff;
  font-size: 1.2em;
}

.ingredients{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgb(255, 255, 255);
}


.recipe-image{
  width: 100%;
  height: auto;
  border: 2px solid whitesmoke;
  padding: 10px 10px;
}

.recipe-ingredients{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: rgb(255, 255, 255); 
  background-color: #3d2f266f;
  padding: 15px;
  border: 5px solid #f1e6d8ff;
  margin-bottom:  50px;
}

li{
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  padding-bottom: 5px;
}


.half-50{
  width: 50%;

}

.form{
  display: flex;
}

table, th, td {
  border: 1px solid rgb(255, 255, 255);
  color: bisque;
  padding: 5px;
}


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .headline {
display: flex;
justify-content: center;
align-items: center;
height: 230px;
color: #f1e6d8ff;
} 


.recipe-image1{
  width: 90%;
  height: auto;
  border: 1px solid #f50d0d;
  padding: 10px;
}

.recipe-image2{
  width: 90%;
  height: auto;
  border: 1px solid #f50d0d;
  padding: 10px;
}

.pic1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.caption{
  text-align: center;
  color: #f1e6d8ff;
  font-size: 1.2em;
}

.ingredients{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgb(255, 255, 255);
}  


}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
.recipe-image1{
  width: 60%;
  height: vh;
  border: 1px solid #f50d0d;
  padding: 10px;
}


/* .reci-imglg{
  width: 50%;
  height: 500px;
} */

.caption{
  flex-direction: row;
  flex-wrap: wrap;
  width: 50%;
}

.display{
  display: grid;
  grid-template-columns: 200px 200px 200px 200px 200px 200px ;
  grid-template-rows: 200px 200px 100px 200px 200px 200px;
  grid-gap: 10px;
}

.img{
  grid-column:1/3 ;
  grid-row:1/5 ;
}

.recipe-image02{
  grid-row: 1/ 4;
  grid-column: 1/5;
}

.ingredients{
   grid-row: 5 / 4;
  grid-column: 1/3;
}

.caption{
   grid-row: 4 / 5;
  grid-column: 1/5;
}

.recipe-image{
  height: 300px;
  width: 80%;
}

.recipe-image{
  grid-row: 1 / 2 ;
  grid-column: 1 /5;
}

/* .half-50{
  grid-row: 4 / 5;
  grid-column: 1/5;
} */

.large{
  display: grid;
  grid-template-columns: 200px 200px 200px 100px;
  grid-template-rows: 200px 200px 200px 100px;
}

.pantry-section{
  border: solid 1px aquamarine;
  height: 500px;
  grid-row: 1 / 2;
  grid-column: 1/1 ;
}



.sub-text{
  text-align: left;
  font-size: 16px;
  color:beige
}

h7{
  color:antiquewhite;
  font-size: 26px;
  padding: 2px;
}

li{
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  padding-bottom: 5px;
  grid-row: 1/ 4;
}

.tag{
  display: inline-block;
  color:blanchedalmond;
  padding: 25px;
  margin: 5px;
  border-radius: 3px;
  margin-top: -200px;
  text-align: center;
}

table, th, td {
  border: 1px solid rgb(255, 255, 255);
  color: bisque;
  padding: 5px;
}

/* .headline{
  width: 100%;
  text-align: left;
  display:flex;
} */


}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {





}