html,
body {
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-weight: 200;
    margin: 0;
    background-color: #f9f3e2;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#body {
    display: flex;
    align-items: center;
    background-color: #f9f3e2;
    color: #132436;
    height: 100%;
    flex-direction: column;
    width: 100%;
}


.banner {
    width: 100%;
    background-color: #132436;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    /* padding: 10px; */
    z-index: 9999;
    height: 65px;

  }
  #contact-banner {
    bottom: 0;
    left: 0;
    justify-content: center;
  }

  #top-banner {
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
      }
  
  #contact-banner a, #top-banner a {
    padding: 20px;
    color: #f9f3e2;
    /* text-decoration: none; */
    font-size : x-large;
    text-underline-offset: 3px;
  }

  header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

header h1 {
    margin: 0;
}

header p {
    margin: 0.5rem 0 0 0;
}

.section {
    background-color: #fff;
    padding: 20px 40px;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: -webkit-fill-available;
    height: fit-content;
}

section h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 0;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 820px) {
    /* Add your mobile-specific CSS here */

    p {
        font-size: 16px;
    }

    .banner {
        position: fixed ;
        top:0;
    }

    #contact-banner a,
    #top-banner a {
        padding: 10px;
        font-size: large;
    }
}