.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

/* Base page styling */
body, html {
  background-color: #7FCED5;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* Headings */
.h1 {
  color: #000000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.h2 {
  color: #000000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

/* Paragraph text */
.p {
  color: black;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  font-size: 20px;
  max-width: 1000px;
  margin: auto;
  line-height: 1.7;
}

/* Links */
a, a:link, a:hover, a:visited {
  color: #FFFFFF;
  font-weight: 600;
}

/* Logo responsiveness */
.responsive200 {
  width: 240px;
}

@media screen and (max-width: 768px) {

  body {
    font-size: 17px;
  }

  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 26px;
  }

  .p {
    font-size: 18px;
  }

  .responsive200 {
    width: 100%;
  }
}

.modal.in {
  display:block;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
  margin-top: 80px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.footer a,
.footer a:link,
.footer a:visited,
.footer a:hover {
  color: #7FCED5;   /* same as page background */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.accordion {
  max-width: 100%;
  margin: 0 auto;
}

/* Center the header text */
.accordion-button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    justify-content: center;
    text-align: center;
    color: #000000 !important; /* <-- force black text */
}

/* Accordion body links */
.accordion-body a {
    color: #000000 !important; /* force black links */
    text-decoration: underline;
}

/* If you ever put a link inside the header itself */
.accordion-button a {
    color: #000000 !important;
    text-decoration: underline;
}