@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root{
  --primary-color: #241773;
  --secondary-color: #000000; 
}
body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background: var(--primary-color);
  color: #fff;
  background: url('148221500_lel.jpg') no-repeat right center / cover;
  position: relative;
  line-height: 1.5;
}
*{
  box-sizing: border-box;
}
p.disclosure{
  font-size: 12px;
  font-style: italic;
}
p.disclosure.no-italic {
  font-style: normal;
}

p.disclosure a:hover{
  text-decoration: underline;
}
.container{
  width: 100%;
  position: relative;
  z-index: 102;
  text-align: center;
}
.inner-container{
  width: 800px;
  max-width: 90%;
  padding: 4em;
  background: rgba(36, 26, 115,.75);
  margin: 0;
  text-align: left;
  min-height: 100vh;
  overflow-y: auto;
}
h2{
  line-height: 1.25;
  margin: 0 0 10px;
  font-size: 2.25em;
  text-transform: uppercase;
}
h3{
  line-height: 1.25;
  margin: 0 0 1em;
  font-size: 1.5em;
  text-transform: uppercase;
}
img{
  max-width: 250px;
}
.mission-statement{
  font-size: 1.25em;
  font-style: italic;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.25);
}
.close-quote{
  font-size: 1.25em;
  font-style: italic;
  font-weight: bold;
}
.inner-container a{
  color: #fff;
  text-decoration: none;
}
.contact-info{
  padding: .25em;
  color: #fff;
  width: 100%;
  margin: 1em 0;
  border-top: 1px solid rgba(255,255,255,.25);
}

.button {
  background: #fff;
  padding: 1em 1.5em;
  color: #2A2F6F !important;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1.5em;

}
@media screen and (max-width: 40em) {
  .button {
    display: block;
  }
}
@media screen and (min-width: 40em) {
  .show-for-small-only {
    display: none;
  }
}

.pt-small {
  padding-top: 1.5em;
}