body {
  font-family: "eagle lake";
  background: #402a23;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

.grid{
  display:grid;
  grid-gap: 64px;
}

.food-grid{
  display: grid;
  grid-template-columns:repeat( 3, 1fr);
  justify-content: space-around;

}

.footer-grid{
  display: flex;
  grid-template-columns: 1fr 2fr 2fr;
  grid-gap: 60px;
}

.eygpt{
  max-width: 600px;
  padding: 30px;
}

.img-responsive{
width: 100%;
  object-fit: cover;

}

.text-centre{
  text-align: center;
}

.grid-2-coloumns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}

.grid-3-coloumns{
  display: grid;
  grid-template-columns:repeat(3, 1fr);
 padding-inline-start: 60px;
 margin-top: 30px;

  
}

.card{
  background:#f4e5c2;
  margin:30px 0;
  width:100% ;
  max-width:400px ;
 
  
}

.card-head{
  display: flex;
}

.card-body{
  padding: 30px;
}
.card-head.grid{
  grid-gap:0
}

.embed{
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.media-container{
  display: flex;
}

.card-footer{
  padding: 30px;
}

section{
max-width: 100%;
  margin: 0 auto ;
  padding: 100px 0;
}

.food-section{
  background:#402a23ba;
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url("../Images/Aerial.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #f4e5c2;
  text-align: center;
  padding: 200px 0;
}

header h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  margin: 30px 0;
}

header h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
}

header h3 {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 3px;
  margin: 0;
}

header a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #402a23;
  padding: 16px 32px;
  margin-top: 30px;
  display: inline-block;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  background: #f4e5c2;
}

main{
  background-color: #f4e5c2;
  
}

main h2{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 5px;
  color: #402a23;
  opacity: 0.6;
  margin: 0;
  text-transform: uppercase;
}

main h3{
 font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #402a23;
  margin: 0;
 
}

main h4{
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #402a23;
  margin: 0;
}
main h5{
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  color: #402a23;
  margin: 0;
}

main p{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #402a23;
 letter-spacing: 2px;
 opacity: 0.8;
  
}

.btn{
  display: block;
   background:#402a23;
   color: #f4e5c2;
   font-size: 14px;
   text-decoration: none;
   line-height: 1.5;
   letter-spacing: 3px;
   text-transform: uppercase;
   text-align: center;
   padding: 16px;


}
 
footer {
  color: #f4e5c2;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../Images/Goat.png");
    background-repeat: no-repeat;
    background-size: cover;
  
}

footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
 
}

footer p{
 font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5;

}

footer ul{
  padding:0;
}

footer li{

  list-style: none;
  margin: 0;
  padding: 0;

}

footer a{
  color:#f4e5c2;
  opacity: 0.7;
}

@media (max-width: 900px;) {
  header {
    padding: 60px 0;
  }

  header h1 {
    font-size: 38 px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 15px;
  }

  .grid-2-coloumns{
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .grid-3-coloumns{
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin:
  }

  section{
    padding:30px;

  }

  .card-head img{
    display: none;
  }

  .embed{
aspect-ratio: 16/9;
  }
}
