    body, html {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      background-color: var(--pico-background-color);
      padding: 1rem;
      position: center;
      z-index: 2;
      text-align: center;
    }

    nav {
      display: flex;
      flex-direction: column;
      transition: max-height 0.3s ease;
      overflow: hidden;
    }

    nav.open {
      max-height: 350px;
    }

    nav.closed {
      max-height: 0;
    }

    .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      background: none;
      border: none;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      nav ul {
        flex-direction: column;
        gap: 0.1rem;
      }
    }

    @media (min-width: 769px) {
      nav {
        max-height: none !important;
      }

      nav ul {
        display: flex;
        flex-direction: row;
        gap: 1rem;
      }

      .menu-toggle {
        display: none;
      }
    }

    main {
      flex: 1;
      padding: 2rem;
      transition: margin-top 0.3s ease;
    }

    footer {
      background-color: var(--pico-muted-color);
      padding: 1rem;
      text-align: center;
    }

    .apply-ff {
      font-family: 'Montserrat', sans-serif;
    }

    .headerimg {
      height: 150px;
      width: 150px;
    }
    
    .center-txt {
      text-align: center;
    }

    .headerctr {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .headertxt-ctr {
      display: grid;
      place-items: center;
      padding-top: 8px;
    }

    .headertxt-size {
      font-size: 2rem;
    }

    h1.headertxtclr, h3.headertxtclr, h6.headertxtclr {
      color: #ccddff;
    }

    .applinkspacing {
      padding-left: 15px;
      padding-right: 15px;
    }

    .footerspacing {
      padding-left: 5px;
      padding-right: 5px;
    }

    .imgrt {
        float: right;
        padding-left: 45px;
        padding-bottom: 15px;
    }

    .imglt {
        float: left;
        padding-right: 45px;
        padding-bottom: 15px;
    }

    .quotetxt {
        color: #E8AE01;
    }

    .tytxtclr {
      color: #ffaa81;
    }

    .linkspacing {
      padding-top: 10px;
      padding-bottom: 10px;
    }