/* used on multiple pages to hide content unless the url contains a particular query string
- js is used to detect a value in query string that will trigger the display of content */
section #default-content .dynamic-content {
    display: none;
}
section .dynamic-content p {
  display: block;
}

