 /* Header */
.header {

  width: 100%; /* Make sure the header spans the entire width of the page */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  background-color: #006400; /* Change color to a darker shade */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Increase shadow effect for depth */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); /* Add a wave effect to the bottom of the header */
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 ;
}

.header__title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff; /* Change font color to white */
  font-family: Arial, sans-serif; 

}

.header__title a {
  text-decoration: none;
  color: inherit; /* Use the same color as the .header__title */
}

.header__nav {
  margin-left: auto;
}

.header__list {
  display: flex;
}
.header__item {
  color: #FFFFFF;
}

.header__item {
  margin-left: 2rem;
  list-style: none;
}

body{
   background-color: #32cd32;
}
.responsive {
width: 100%;
aspect-ratio: 16/9;
}

