:root{
 --blue:#1F2457; 
 --white:#fff9f4;
}
  
  
  
  body{
  font: Libertinus Serif;
  background-color:#fff9f4;
  color:blue;
  line-height:2.5em;
}

header{
  background-color:#1F2457;
  color: blue;
  padding: 20px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
}

.banner img{
  width:100%;
  height:360px;
  object-fit:cover;
}

*{
  box-sizing: border-box;
  margin:1;
  padding:1;
}
.about-section h2{
  font-size:24px;
  color:#1F2457;
  margin-bottom:20px;
  background-color: var(--blue);
}


.about-content{
  display:flex;
  flex-wrap:wrap; 
  align-items:center;
  justify-content:center;
  gap:40px;
  text-align:center;
  background-color:var(--blue);
}

.Menu{
  padding:40px 20px;
  text-align:center;
  background-color:#1F2457;
}

.menu h2{
  font-size:30px;
  color:#1F2457
  margin-bottom:30px;
}

.menu-item{
  display:inline-block;
  width:220px;
  margin:20px;
  background:white;
  border-radius:12px;
  box-shadow:0 4px 8px ;
  padding:20px;
}

.menu-item img{
  width:170px;
  margin-bottom:2px;
  border-radius:01px;
  object-fit:cover;
}

.menu-item button:hover{
  color:green;
}
