#firstHeader{
    padding-top: 2px;
    display: flex;
    flex-direction: row;
    background-color: #E26928;
}
#firstHeaderItem{
    display: flex;
    flex-direction: row;
    column-gap: 5px;
}
#firstHeaderParagraph{
    color: whitesmoke;
    font-weight: medium;
    font-size: larger;
}
#svg{
    width: 30px;
    height: 30px;
    margin-left: 10px;
    /* fill: #000000; */
}
#secondHeaderItem1{
    color: #007bff;
}
#secondHeaderItem2{
    color: #E26928;
    font-size: larger;
}
#logoImage1{
    height: 120px;
    width: 200px;
}
a{
    text-decoration: none;
    color: whitesmoke;
}
#firstFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    background-color: #E26928;
    color: whitesmoke;
    font-size: larger;
    padding-left: 5px;
    padding-top: 5px;
}
#secondFooter{
    background-color: #007bff;
    color: whitesmoke;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 210px;
    font-size: x-large;
}
body{
    /* padding-left: 4px; */
    /* padding-right: 4px; */
    font-family: poppins, sans-serif;
    font-size: medium;
}
/* styles for the About Us page */
#aboutUsParagraph{
    font-size: large;
    line-height: 1.5;
    margin-top: 5px;
}
#visionMissionAndMotto{
    display: flex;
    flex-direction: row;
    column-gap: 2px;
}
h3{
    color: #007bff;
}
h2{
    color: black;
}
#projectParagraph{
    font-size: x-large;
    
}
/* Small screens (phones) */
@media (max-width: 576px) {
    /* Styles for small devices */
    #firstHeader{
        flex-direction: column;
        /* align-items: center; */
    }
    #secondFooter{
        padding-left: 50px;
        font-size: large;
    }
    #svg{
        width: 20px;
        height: 20px;
    }
    #firstFooter{
        flex-direction: column;
    }
    #visionMissionAndMotto{
        display: block;
    }
  }
  
  /* Medium screens (tablets) */
  @media (min-width: 577px) and (max-width: 992px) {
    /* Styles for medium devices */
  }
  
  /* Large screens (desktops) */
  @media (min-width: 993px) {
    /* Styles for large devices */
  }
  