html {
    font-size: 62.5%;
  }
  
  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #83C05B;
    font-size: 1.6rem;
  }

  nav ul li {
    display: block;
    height: 50px;
    border-radius: 1rem;
    background-color: #9DCD7C;
    border: solid #6D9A4C 1px;
    text-align: center;
    padding-block-start: 2rem;
    box-shadow: 0 2px 10px #5F8C3B;  
  }

  nav ul li a {
    font-size: 2.5rem;
    color: aliceblue;
    text-decoration: none;
    text-shadow: 2px 2px #5F8C3B;
  }

  ul {
    padding-inline-start: 1rem;
  }

 #vision section {
    display: flex;
  }

  #vision section p {
    margin: auto 0 auto 0;
    padding: 1rem;
    font-size: 1.6rem;
  }

  #boxes {
    gap: 1rem;
  }

  #boxes section div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 1rem;
    gap: 1rem;
    background-color: #A5A4A3;
    height: 20px;
    padding: 10px;
    font-size: 1.6rem;
    color: black;
  }

  #container {
     display: flex;
     flex-direction: column;

  }

  #logo {
    background-color: #83C05B;
  }

  #maincontent {
    display: flex;
    flex-direction: column;
  }

  #vision {
    display: flex;
    flex-direction: row;
  }


  #vision figure {
    display: none;
  }

  #boxes {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding-block-end: 1rem;
    padding: 1rem;
  }

  #boxes img {
    max-width: 100%;
  }

  #specials {
    display: flex;
    flex-direction: column;
    background-color: white;
  }

  #boxes > * div img {
    height: 23px;
    width: 23x;
  }

  #events {
    display: flex;
    flex-direction: column;
    flex-basis: 1;
  }

  #news {
    display: flex;
    flex-direction: column;
    flex-basis: 1;
  }

  #news ul li span {
    font-weight: bold;
  }

  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
  }

  footer section img {
    height: 30px;
    width: 30px;
    background-color: white;
  }

  #tel {
    color: black;
  }

  .fa-square-twitter, .fa-square-facebook  {
    color: #ffffff;
    font-size: 2rem;
  }

  @media screen and (min-width:426px){

    nav ul {
      display: flex;
      flex-direction: row;
      margin-inline-end: 1rem;
    }
    nav ul li {
      flex-grow: 1;
    }

    #vision {
      display: flex;
      flex-direction: row;
      margin: 1rem 0;
      border: 1rem solid white;
    }

    #vision section {
      background-image: url("./images/light-brown-background.jpeg");
      flex-grow: 2;
    }

    #vision figure  {
      display: block;
      flex-basis: 33%;
      flex-grow: 1;
    }

    #vision figure img {
      max-width: 100%;
    }

    #boxes {
      flex-direction: row;
      flex-wrap: wrap;
    }

    #news {
      flex-basis: 100%;
    }

  }

  @media screen and (min-width:769px) {

    body {
      font-size: 1.7rem;
    }

    #vision {
      margin: 1rem 1rem 0 1rem;
      border: 1rem solid white;
    }

    #vision section p {
       font-size: 3rem;
       padding-left: 2rem;
    }

    #boxes {
      display: flex;
      flex-direction: row;
      margin: 1rem;
    }
    
    #boxes > * {
      flex-grow: 1;
      flex-basis: 0px;
    }

    footer {
      padding: 0 1rem 1rem 1rem;
    }
  }