body {
    background-color: #F6F0ED;
    margin: 0;
    font-family: barlow;
    /* background-image: url('img/Background.png');  */
    background-color: black;
    background-repeat: repeat; /* Allows the texture to repeat if it's smaller than the viewport */
    background-size: cover; /* Ensure the image covers the whole viewport */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Optional: Fixes the background while scrolling */
    color: white;
  }


  h2 {
  font-size: 40px;
  font-family: playfair;
  background-color: #7EA8BE;
  padding: 20px;
  margin-top: 0px;
  }
  
  
  .about {
    width: 1300px;
    margin-left: 100px;
  }

  img {
    width: 900px;
    padding-left: 200px;
  }

  article {
    margin-left: 22%;
    max-width: 50%;
  }

  .mission {
    text-align: center;
    margin-left: 19.8%;
    background-color: #7EA8BE;
    padding: 5px;
    max-width: 58.5%;
  }
  .mission h3 {
    margin-left: 30px;
  }

  .about h3 {
    text-align: center;
    font-family: playfair;
    font-size: 30px;
    margin-left: 150px;
  }

  h4 {
    margin-left: 20px;
  }
  p{
    margin-left: 50px;
  }

  #Header {
    position: sticky;
    top: 0; /* Sticks to the top of the screen */
    z-index: 1000; /* Keeps it above other elements */
  }
  
  #Header ul {
    list-style-type: none;
    background-color: black;
    display: flex;
    align-items: center; /* Aligns items vertically */
    margin: 0;
    padding: 10px 0;
    height: 50px; /* Increased height for better visual balance */
  }
  
  #Header li a{
    text-decoration: none;
    color: #F6F0ED;
    padding: 16px 30px;
    font-size: 20px;
    /* transition: color 0.4s, font-size 1s; */
  
  }
  
  #Header li a:hover{
    background-color: #7EA8BE;
    color:#F6F0ED; 
    
  }
  
  #Header li a:active{
    background-color: #C2948A;
    color:black; 
  }
  
  #Header .logo {
    margin-right: auto;
    padding-left: 20px; 
    font-size: 35px;
  }
  
  footer {
    padding: 15px 50px;
    background-color: #7EA8BE;
    color: black;
    display: flex;
    justify-content: space-evenly;
  }
  
  footer > div {
    width: 150px;
    height: 500px
  }
  
  @media(max-width: 500px){
  
    footer{
      flex-direction:column;
    }
    #Header li a{
      text-decoration: none;
      color: #F6F0ED;
      padding: 16px 10px;
      font-size: 10px;
      /* transition: color 0.4s, font-size 1s; */
    
    }

    #Header .logo {
      font-size: 15px;
    }

    #Header {
      max-width: 500px;
    }

    h2 {
      text-align: center;
    }

    .about h3 {
      margin-left: 5%;
    }

    .about{
      font-size: 12px;
      max-width: 90%;
      margin-left: 0;
    }

    img {
      max-width: 100%;
      padding-left: 0;
    }


  }
  
  