/* Responsive_Core_CSS file for Entire BnG Site */

img {border: 0;}/*  This sets the border to zero for all img elements */

body {background-color: DeepSkyBlue;}/*  This sets a default "Deep Blue Sky" background for the entire BnG website  */

.bodyText {
      font-family: "Comic Relief", "Comic Neue", sans-serif;
			color:#000000;
			margin-top:0px;}

    body {
      font-family: "Comic Relief", "Comic Neue", sans-serif;
    }

p {text-align: center;
  }/*  This sets a default text alignment to "center" for all paragraph elements  */


/*  This responsive bodymap and its related section# definitions standardize the body and footer areas of most BnG website pages.*/
  .bodymap {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      ". ft ft ft ft ft ft ft ft ft ft ."
      ;
    }

    section#footer {
      /* Footer Section */
      grid-area: ft;
      padding: 10px;
    }

/*  This responsive headermap and its related section# definitions standardize the top and drop-down menu areas of most BnG website pages.*/
  .headermap {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      "tp tp tp tp tp tp ta ta ta ta ta ta"
      "dm dm dm dm dm dm . . . . . ."
      ;}

section#titlepic {
  grid-area: tp;
  border-bottom: 5px solid #000;
  }

section#titlearea {
  grid-area: ta;
  padding: 5px;
  border-bottom: 5px solid #000;
  }

section#ddmenu {
  grid-area: dm;}

/* Drop-down Menu Button */
.dropbtn {
  background-color: #000000;
  color: white;
    font-family: "Comic Relief", "Comic Neue", sans-serif;
    border-radius: 10px;
  padding: 5px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

/* Drop-down Menu Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Drop-down Menu Content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 250px;
      border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the Drop-down  Menu*/
.dropdown-content a {
  font-family: "Comic Relief", "Comic Neue", sans-serif;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of Drop-down Menu links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the Drop-down Menu when the button is clicked */
.show {
  display: block;
}

/* Responsive Images */
.spotlight {
  margin: 5px;
}

.spotlight img {
  max-width: 100%;
  height: auto;
}
