@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/noto-sans-regular.ttf);
}
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/noto-sans-bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/noto-sans-italic.ttf);
  font-style: italic;
}
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/noto-sans-bolditalic.ttf);
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Iosevka Charon';
  src: url(../fonts/IosevkaCharon-Bold.ttf);
  font-weight: bold;
}

html {
  --yellowpale: rgb(255,235,200);
  --yellowlight: rgb(255,211,146);
  --yellowbase: rgb(254,187,87); /*pulled this yellow from the Canva designs*/
  --yellowbasea0: rgba(254,187,87,0);
  --yellowdark: rgb(253,163,30);
  --yellowdarka7: rgb(253,163,30,.8);
  --brown1: rgb(90,45,45);
  --brown2: rgb(140,70,70);
  --brown3: rgb(190,140,110);
  --purple1: rgb(37,43,109); /*pulled this purple from the Two Row png*/
  --purple1a5: rgb(37,43,109,.5);
  --purple2: rgb(100,27,142); /*pulled this purple from the Canva designs*/
  --purple3: rgb(69,35,126);
  /* if I want a lighter purple/pink: rgb(180,48,255) */
  --purplepale: rgb(235,180,255);
  --headerfont: "Iosevka Charon";
  --bordrad: 12px;
  background: var(--purple1);
  scroll-behavior: smooth;
}
body {
  width: 100%;
  display: grid;
  position: relative;
  font-family: 'Noto Sans';
  background: linear-gradient(90deg, var(--yellowlight) 0%, var(--yellowpale) 25%, var(--yellowpale) 75%, var(--yellowlight) 100%);
  color: var(--purple1,black);
  font-size: 16px;
}

.majordiv {
  position: relative;
  width: 100%;
  justify-self: center;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
}

#leaddiv {
  justify-self: center;
  display: grid;
  width: 100%;
  background: linear-gradient(var(--purple1), var(--purple2));
  color: var(--yellowpale);
}
#headerimg {
  position: absolute;
  justify-self: center;
  margin-top: 24px;
  width: 100%;
  max-width: 800px;
}
#headertext {
  position: absolute;
  text-align: center;
  margin-top: 64px;
  width: 100%;
  font-family: var(--headerfont);
  font-weight: bold;
  font-size: 70px;
  color: var(--yellowbase,white);
  text-shadow: 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1), 0 0 2px var(--purple1);
}
/* .headerspan {
  z-index: 1;
}
.headerspan::before {
  content: attr(title);
  position: absolute;
  top: -.5px;
  z-index: -1;
  -webkit-text-stroke: 6px var(--purple1);
} */
#headerlink {
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: var(--yellowbase,white);
  text-decoration: none;
}
.spacer { /* breaks HMG line on narrow screens */
  display: none;
}

#leadlines {
  margin: 216px 0 32px 0;
  font-size: 18px;
  text-align: center;
  text-shadow: 0 0 4px black, 0 0 10px var(--purple1);
}
#leadlines .emph, .hashtag {
  padding: 6px 0;
  color: var(--yellowlight);
  font-family: var(--headerfont);
  font-weight: bold;
  font-size: 26px;
}
#leadlines .spaceaboveneg {
  margin-top: -6px;
}
#leadlines .extraemph, .hashtag {
  color: var(--yellowbase);
}

#navdiv {
  background: linear-gradient(90deg, var(--yellowdark) 0%, var(--yellowbase) 25%, var(--yellowbase) 75%, var(--yellowdark) 100%);
}
#navbar {
  width: 100%;
  max-width: 1000px;
  padding: 0 40px;
  justify-self: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.subnavbar {
  justify-self: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.navitem {
  position: relative;
  width: 160px;
  margin: 8px;
  display: grid;
  font-weight: bold;
  text-align: center;
  align-content: center;
  cursor: pointer;
}
.navitem:hover {
  background: radial-gradient(closest-side, var(--yellowpale), var(--yellowbasea0));
  text-shadow: 0 0 3px var(--yellowpale), 0 0 3px var(--yellowpale);
}
.navitem a {
  text-decoration: none;
  color: var(--purple1,black);
}
.decline, .decline2 { /* decorative line... not decline like decrease */
  justify-self: center;
  height: 2px;
  width: 110px;
  background: var(--purple2);
  margin-top: -28px;
  display: grid;
  position: relative;
}
.decline2 {
  width: 70px;
  margin-top: -22px;
}
.navitem .decline, .navitem .decline2 {
  margin: 2px;
}

h1, h2 {
  text-align: center;
  font-family: var(--headerfont);
  font-weight: bold;
  color: var(--purple1);
}
h1 {
  margin: 36px 0 24px 0;
  font-size: 36px;
}
h2 {
  margin: 32px 0 30px 0;
  font-size: 26px;
}
.textbox, .card, .pdfbox, .videobox, .faqbox, .timelinebox {
  position: relative;
  justify-self: center;
  display: grid;
  background: white;
  border-radius: var(--bordrad);
  border: 2px solid var(--purple2);
  color: var(--purple1);
  overflow: hidden;
}
.textbox, .pdfbox, .videobox, .faqbox, .timelinebox {
  width: 90%;
  max-width: 800px;
}
.textbox, .pdfheader, .videoheader, .newsbody, .faqheader, .faqbody {
  padding: 16px 20px;
}
.archivebox, .faqbox {
  margin-bottom: 24px;
}
.faqboxfinal {
  margin-bottom: 0;
}
.faqheader {
  width: 100%;
  background: linear-gradient(var(--purple1), var(--purple2));
  color: var(--yellowlight);
  text-shadow: 0 0 2px black, 0 0 3px var(--purple1);
  font-weight: bold;
  padding-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.faqphoto {
  width: 100%;
}
.aboutphoto {
  margin: 16px -20px;
  width: calc(100% + 40px);
}
.headerstar {
  position: absolute;
  height: 75px;
  top: -10px;
  right: 15%;
  opacity: 50%;
}
.inlinestar {
  height: 16px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.card, .pdfbox, .videobox {
  margin: 10px;
}
.cardholder, .docholder {
  position: relative;
  justify-self: center;
  width: 95%;
  max-width: 1200px;
  margin: -10px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  row-gap: 24px;
}
.updatecard {
  height: 350px;
  width: 300px;
  grid-template-rows: auto auto 1fr;
}
.updatecard .cardheader {
  background: linear-gradient(var(--purple1), var(--purple2));
  /* background: linear-gradient(var(--brown3), var(--brown2)); */
  color: var(--yellowlight);
}
.voicescard {
  height: 250px;
  width: 500px;
  grid-template-columns: 1fr 1fr;
}
.cardimg img {
  width: 100%;
}

.cardheader {
  position: relative;
  width: 100%;
  height: 70px;
  font-weight: bold;
  padding: 12px;
}
.cardheader p {
  position: absolute;
  bottom: 12px;
}
.cardbody {
  padding: 8px 12px;
  overflow-y: scroll;
}

#getinvolved {
  margin-top: 42px;
}
.getinvolvedcard {
  width: 330px;
  height: 200px;
  grid-template-columns: auto 1fr;
}
.cardq {
  height: 100%;
  width: 100px;
  padding: 12px;
  font-family: var(--headerfont);
  font-weight: bold;
  font-size: 19px;
  color: var(--purple1);
}
.cardq1 {
  background: var(--yellowlight);
}
.cardq2 {
  background: var(--yellowbase);
}
.cardq3 {
  background: var(--yellowdark);
}
.carda {
  padding: 8px 12px;
}
.carda p {
  padding: 6px 0;
}
.cardarrow {
  position: absolute;
  left: 25px;
  top: 55%;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: radial-gradient(var(--purple1) 0%, var(--purple2) 70%);
  font-size: 36px;
  font-weight: bold;
  color: var(--yellowbase);
}
.cardarrow p {
  position: absolute;
  left: 5px;
  top: -9px;
}
.highlightedlink, .highlightedlink2 {
  padding: 0 7px;
  background: var(--purple1);
  border-radius: var(--bordrad);
  color: var(--yellowlight);
  font-family: var(--headerfont);
  text-decoration: none;
  white-space:nowrap;
}
.highlightedlink:hover {
  background: var(--purple2);
}
.highlightedlink2 {
  background: var(--yellowbase);
  color: var(--purple1);
  text-shadow: none;
}
.highlightedlink2:hover {
  background: var(--yellowlight);
}

.contentslink {
  font-weight: bold;
}
.blockquote {
  font-family: var(--headerfont);
  font-size: 18px;
  padding-left: 20px;
  padding-right: 20px;
}
.blockquotetag {
  font-family: var(--headerfont);
  padding-left: 20px;
  padding-right: 20px;
  text-align: right;
}
.highlightedtext {
  background-color: var(--yellowlight);
}
.photo {
  width: 100%;
}
.photoend {
  margin-bottom: -5px;
}
.photoholder {
  margin: 16px -20px -16px -20px;
  background: var(--purple1);
  display: grid;
  justify-content: center;
}

#closerdiv {
  width: 100%;
  margin-top: 72px;
  background: linear-gradient(var(--purple2), var(--purple1));
  border-top: 4px solid var(--yellowdark);
}
#smbar {
  position: absolute;
  top: -25.5px;
  padding: 0 8px 0 8px;
  justify-self: center;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 16px;
  border: 3px solid var(--yellowdark);
  border-radius: 20px;
  background: linear-gradient(var(--purple1), var(--purple3));
  overflow: hidden;
}
.smitem {
  height: 48px;
  width: 50px;
  display: grid;
  justify-content: center;
  align-content: center;
  cursor: pointer;
}
.smitem:hover {
  filter: drop-shadow(0 0 3px var(--yellowpale));
}
.smicon {
  height: 30px;
}
#hashtags {
  margin-top: 44px;
  margin-bottom: 24px;
  width: 80%;
  justify-self: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-content: center;
  padding: 8px;
}
.hashtag {
  text-align: center;
  text-shadow: 0 0 4px black, 0 0 10px var(--purple1);
  display: grid;
}
#hashtags .decline, #hashtags .decline2 {
  background: var(--yellowdark);
  margin: 2px 0;
}
#hashtags .decline {
  margin-top: 4px;
}
#hashtags .decline, #hashtags .decline2 {
  box-shadow: 0 0 2px black, 0 0 10px var(--purple1);
}


/* styles for urgent pop-up and drop-down menus have not been updated, since they're not being used */
.mask {
  width: 100%;
  height: 100vh;
  display: grid;
  position: fixed;
  background: var(--purple1a5,black);
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.popup {
  width: 90%;
  max-width: 800px;
  display: grid;
  position: relative;
  justify-self: center;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  outline: 1px solid var(--purple1,black);
  border-radius: 5px;
}
.xout {
  display: grid;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--purple1,black);
  justify-content: center;
  align-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 1px;
  cursor: pointer;
}
.contents {
  max-width: 500px;
}

.dropdown-title {
  padding-top: 2px;
}
.dropdown-triangle {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 2px;
}
.dropdown-closed {
  border-left: 12px solid var(--purple1,black);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0px solid transparent;
}
.dropdown-open {
  border-top: 12px solid var(--purple1,black);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 0px solid transparent;
}
.dropdown-target {
  display: none;
  padding-bottom: 12px;
}
#dropdown-offer-target {
  padding-bottom: 0px;
}

/* extrabtn on take action page may not stick around as such */
.extrabtnbox {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 4px 0;
}
.extrabtnbox a {
  margin: 8px 20px 2px 20px;
}
.extrabtn {
  width: 250px;
  background: var(--yellowbase,white);
  padding: 8px;
  display: grid;
  text-align: center;
  outline: 1px solid white;
  border-radius: 3px;
  outline: 1px solid var(--purple1,black);
  align-content: center;
  cursor: pointer;
}
.extrabtn:hover {
  background: var(--yellowlight,white);
}
.btnlink {
  color: var(--purple1,black);
  text-decoration: none;
}



/* basic elements */
h3 {
  font-weight: bold;
  padding-bottom: 4px;
}
p, li {
  padding: 4px 0;
}
ul {
  list-style: disc inside;
  padding-left: 12px;
}
.li2 {
  list-style-type: circle;
  padding-left: 24px;
}
.li2 a {
  color: var(--purple1);
}
ul .spacebelow {
  padding-bottom: 8px;
}
a {
  color: var(--purple2,black);
}
.bold {
  font-weight: bold;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
.extrapaddingtop {
  padding-top: 16px;
}
.paddingbottom {
  padding-bottom: 8px;
}
.smalltext {
  font-size: .8rem;
}


/*screen size adjustments*/
@media screen and (max-width: 650px) {
  #headertext {
    margin-top: 50px;
  }
  #headerlink {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  .spacer {
    display: inline;
  }
  #headertext {
    margin-top: 12px;
  }
}