* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    padding-left: 15%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    height: 80px;
    box-shadow:10px 5px 5px rgb(216, 213, 213) ;
    padding-bottom: 10px;
    
}
.content1{
    padding-top: 30px;
    padding-left: 10%;
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
}
#id1{
  padding-right: 15%;
  padding-top: 30px;
}
.button1{
    background-color: #149f39;
    padding: 10px 10px;
    color: white;
    align-self: flex-start;
}
.content1 h1{
    font-size: 100px;
}
.button2{
    padding: 10px 15px;
    border: none;
    transition: 0.2s ease-in-out;
    background-color: rgb(222, 198, 74);
    align-self: flex-start;
}
.herocontent{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#nav1{
    margin-top: 100px;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    padding-left:10% ;

}

/* Base styles */
body {
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
}

/* Style for nav links */
.innerH a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

/* Dark theme styles */
body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}

body.dark-mode nav {
  background-color: #1e1e1e;
  color: #ccc;
}

body.dark-mode .header a {
  color: #f5f5f5;
}

/* Toggle button */
.header button {
  padding: 6px 14px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header button:hover {
  background-color: #555;
}

.grid_item{
    display: flex;
    gap: 20px;
    padding: 20px;
    transition: 0.2s ease-in-out;
}
.divider{
    border: 1px solid #ccc;
    margin: 20px 0;
    padding-left:15% ;
}
.menu .button3{
    background-color: #149f39;
    font-size: 20px;
    color: aliceblue;
    text-align: center;
    padding: 10px;
}
h3{
    padding-top:40px ;
    font-size: 30px;
    text-align: center;
}
.menu{
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
    align-items: center;
}
.grid_container{
    display: grid;
    gap: 10px;
    grid-template-areas:
        "I1 I1 I2 I3"
        "I1 I1 I2 I7"
        "I4 I5 I6 I7";
}
.grid-image {
    border-radius: 40px;
    transition: 0.2s ease-in-out;
    width: 100%;
    height: 100%;
}
.gitem1{
    grid-area: I1;
}
.gitem2{
    grid-area: I2;
}
.gitem3{
    grid-area: I3;
}
.gitem4{
    grid-area: I4;
}
.gitem5{
    grid-area: I5;
}
.gitem6{
    grid-area: I6;
}
.gitem7{
    grid-area: I7;
}
ul{
    text-decoration: none;
}
footer{
    background-color: rgb(240, 226, 204);
}
.footer_container{
    display: flex;
    justify-content: space-around;
    padding: 30px;
}
li{
    list-style: none;
}
h4{
    display: block;
    font-size: 1.17em;
    font-weight: bold;
}
a{
    text-decoration: none;
    color: black;
    padding-left: 10px;
}
.links{
    padding: 40px;

}
a:hover{
    color: rgb(141, 129, 59);
}
.button3{
    border-radius: 5px;
}
