body {
    background-color: #ffbb1f;
    padding: 0; 
    margin: 0;
    text-align: center;
    font-family: monospace;
    letter-spacing: 1px;
    color: black;
    justify-content: center;

    
    display: grid;
    grid-template-areas:
        
        "nav"
        "header"
        "main"
        "footer";
}
 


header {
 grid-area: header;
    background-color: rgb(44, 80, 58);
    padding: 0;
    margin: 0;
    border: 1px solid black;
    font-size: 70px;
    color:rgb(44, 80, 58);
    font-family:Coffee;
    letter-spacing: 8px;
 
    place-content: center;
   
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    margin:0;
    padding:0;
    font-size: 20px
    
}

nav li{
    position: relative;

}
.dropdown{
    
    display:none;
    background-color: #ffbb1f;
    list-style: none;
    min-width:10rem;
}
nav button{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    
    
}
.dropdown.open{
    
display:block;
    padding: 1px 1px 20px;
}
.dropdown a{
    display: block;
    padding:10px;
    color: black;
    text-decoration: none;
}
.dropdown a:hover{
    color: blue;
}
header img{
     height: 500px;
    block-size: 1000px
}



main {grid-area: main}
footer {grid-area: footer}

main {
    
    margin: 0;
    font-size: 25px;
    display: grid;

    gap: 15px;
padding:0;

   
}
main div {
    background-color: #ffffff;
    padding: 55px;
    border: 7px solid black;
    border-radius: 10px;
    min-height: 250px;
    display: grid;
    place-items: center;
    border-color:#2c503a;
    
    
    
}

    




main {display: grid;
grid-template-columns: 1fr;
    gap:1px;
}

main b1{
    display:grid;
    grid-template-columns: 1fr; 
}

.sec1_right {background-color: rgb(255, 187, 31);
    border:none;
    padding: 1px;
    
   
    
}
.sec1_right img{
position: absolute;
    margin-top: 200px;
    block-size: 500px
    
}
.sec1_left {
    border: none;
    padding: 20px 20px;
    margin:10px;
    font-size:40px
}

.sec1_btleft{
    border:none;
    padding:1px 1px;
    margin:10px;
    font-size: 40px;
    
}
    


.img1_container{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* responsive columns */
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: transparent;
  border: none;
  width: 100%;
  max-width: 1400px;
}

.img1_photo1,
.img1_photo2{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background-color: transparent;
  border: none;
  height: 350px;
   

  
}

.img1_photo1 img,
.img1_photo2 img {
   width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio but crops to fill */
  display: block;
  border-radius: 10px;
}

.caption{
     position: absolute;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 10px;
  font-size: 30px;
  text-align: center;
  color: black;
    
}
   
    



.sec2_left{
    
   padding: 20px 20px;
    border:none;
    margin:50px;
    
    
}

.sec2_right{
    padding:20px 20px;
    border:none;
    margin:50px;
    
}
    
.b1{width:100%; height: fit-content; display: grid;
grid-template-columns: 1fr 1fr;
padding: 50px;
line-height: 1.4;


}
.I1{
  display:grid;
    height:fit-content;
    grid-template-columns: 1fr 1fr;
width:100%; 
background-color: #000000;
min-height: 20vh;
    
    
}
.b2 {
   display: grid;
    height: fit-content;
    grid-template-columns: 1fr 1fr;
 width:100%; background-color: #2c503a; min-height: 20vh;
}


footer:hover {background-color: red;}



footer {
    grid-area: footer;
    background-color: #ffffff;
    padding: 29px;
    border: 1px solid black;
    font-size: 15px;
    color:black;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;

}