.header {
    background-color: aliceblue;
    color:black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    padding: 10px;
    font-weight: lighter;
    text-align: center;
}

.tagline {
    font-family: 'Courier New', Courier, monospace;
    color: black;
    padding: 20px;
    text-align: center;
}

.h2 {
    font-family: 'Courier New', Courier, monospace;
    color:black;
    padding: 20px;
    text-align: left;
    font-size: 30px;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: lightskyblue;
    z-index: 1000;
}

.ul {
    /*position: sticky;
    top: 0;*/
    display: flex;
    gap: 150px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    /*overflow: hidden;*/
    background-color: lightskyblue;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    justify-content: center;
    z-index: 1000;
}

.ul li {
    position: relative;
    text-align: center;
    color: black;
    text-decoration: none;
}


a {
    text-decoration: none;
    display: inline-block;
    color: black;
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
}

a:hover {
    font-weight: bolder;
}

a:visited {
    color:black
}

.wrap-text {
    overflow: auto;
    line-height: 1.6;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 15%;
    margin-right: 15%;
}

.float-image {
    float: right;
    margin: 0 0 10px 20px;
    width: 350px;
    height: auto;
    border-radius: 8px;
}

.logo-images {
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    float: center;
    margin: 0 auto;
    border-radius: 8px;
}

.footer {
    background-image: url(images/new_footer_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.footer-img {
    position: absolute;
    width: 75px;
    height: auto;
}

.f-img-1 {
    margin-left: 28%;
    margin-top: 125px;
    width: 100px;
}

.f-img-2 {
    margin-left: 31%;
    margin-top: 125px;
    width: 100px
}

.wrap-text-2 {
    margin-top: -25px;
    overflow: auto;
    line-height: 1.6;
    padding: 20px;
    font-size: 18px;
    vertical-align: top;
    margin-left: 15%;
    margin-right: 15%
}

.float-image-2 {
    float: left;
    margin: 0 20px 10px 0px;
    width: 350px;
    height: auto;
    border-radius: 8px;
    vertical-align: top;
}

.h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 22;
    font-weight: bolder;
    text-shadow: -2px 2px #87cefa;
    text-align: center;
}

.h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 22;
    font-weight: bolder;
    text-shadow: -2px 2px #87cefa;
    margin-left: 102px
}

.h4 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 22;
    font-weight: bolder;
    text-shadow: -2px 2px #87cefa;
    margin-left: 57px;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: lightskyblue;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 8px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-label {
    font-weight: bold;
}

.dropdown-menu li a:hover {
    font-weight: bold;
}

.footer p {
    font-size: 24px;
    font-weight: bold;
}





@media only screen and (max-width: 500px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  *, *::before, *::after {
    box-sizing: inherit;
  }

  .ul {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 5px;
    background-color: lightskyblue;
    font-size: 16px;
    z-index: 1000;
    overflow-x: auto;
  }

  .ul li {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: lightskyblue;
    z-index: 1000;
    min-width: 120px;
    padding: 5px 0;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .wrap-text, .wrap-text-2 {
    margin: 0 auto;
    padding: 10px;
    width: 90%;
    overflow: visible;
    text-align: center;
  }

  .float-image, .float-image-2, .logo-images {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
  }

  .h2 {
    font-size: 24px;
    text-align: center;
    margin: 10px 0;
  }

  .h3 {
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
  }

  .h4 {
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
  }

  .footer {
    position: static;
    height: auto;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer > div {
    position: static !important;
    transform: none !important;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
  }

  .footer img {
    max-width: 60px;
    height: auto;
    margin: 0 auto;
  }

  .footer p {
    font-size: 16px;
    margin: 5px 0 0;
    word-wrap: break-word;
    padding: 0 10px;
  }
}