@font-face {
    font-family: 'VT323';
    font-style: normal;
    src: url('../fonts/vt323/VT323-Regular.ttf');
}

@font-face {
    font-family: 'Sahitya';
    font-style: normal;
    src: url('../fonts/sahitya/Sahitya-Regular.ttf');
}

@font-face {
    font-family: 'Sahitya';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/sahitya/Sahitya-Bold.ttf');
}

@font-face {
    font-family: 'PT Serif';
    font-style: normal;
    src: url('../fonts/pt_serif/PTSerif-Regular.ttf');
}

@font-face {
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/pt_serif/PTSerif-Bold.ttf');
}

@font-face {
    font-family: 'PT Serif';
    font-style: italic;
    src: url('../fonts/pt_serif/PTSerif-Italic.ttf');
}


@font-face {
    font-family: 'PT Serif';
    font-style: italic;
    font-weight: bold;
    src: url('../fonts/pt_serif/PTSerif-BoldItalic.ttf');
}


@font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inconsolata/Inconsolata-Regular.ttf');
}

@font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inconsolata/Inconsolata-Bold.ttf');
}

body {
    background-color: #edeaee;
    color: #050505;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'PT Serif', Times, Times New Roman;
    display: flex;
    flex-direction: column;
    font-size: 14pt;
    min-width: 500px;
}

.main-wrapper {
    flex: 1;
    /* This is used to make the footer "flush" with the rest of the page */
    min-height: 95.5vh;
}

a {
    color: #a576d4;
    text-decoration: none;
    transition: text-shadow .22s;
}

a:hover {
    text-shadow: 0px 0px 2px #cfccd4;
}

a:visited {
    color: #8f5ac4;
    text-decoration: none;
}

div.header-logo-wrapper {
    text-align: center;
}

a.header-logo img {
    max-width: 100%;
    height: auto;
/*  border-radius: 10px;
    box-shadow: 0px 0px 3px #cec6d2; */
}

div.navbar-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    font-size: 1.5em;
    margin-bottom: 5px;
    /* font-family: 'VT323', monospace; */
    font-family: 'Inconsolata', monospace;
    max-width: 500px;
    border-radius: 8px;
    border: 3px solid #cacae4;
    background: #2e2b2b;
}

div.navbar-menu a {
    color: #e3ddca;
    text-decoration: none;
    transition: text-shadow .3s;
    text-shadow: 0px 0px 3px #4f4d51;
}

div.navbar-menu a:hover {
    text-shadow: 0px 0px 3px #ffffff;
}

div.content-box {
    box-shadow: 0px 0px 3px #cec6d2;
    border-radius: 5px;
    border: 3px solid #675f68; 
    background: #fcf9fd;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 10px;
}

div.homepage-about {
    margin-left: 30px;
    margin-right: 30px;
}


.bigger-text {
    font-size: 16pt;
}

/* Not super sold on these */

h1 {
    color: #060606;
    font-size: 1.5em;
    text-align: center;
}

h2 {
    color: #2f2931;
    font-size: 1.25em;
    text-align: center;
}

h1.title {
    text-align: left;
}

.footer {
    font-size: 10pt;
    text-align: center;
}

.footer a:hover {
    text-shadow: 0px 0px 1px #a981a9;
}

div.code {
    border-radius: 5px;
    border: 3px solid #110e13;
    background: #110e13;
    padding: 20px;
    margin: 20px;
    overflow: hidden;
    white-space: pre;
    font-family: 'Inconsolata', monospace;
}

pre {
    border-radius: 5px;
    border: 3px solid #110e13;
    background: #110e13;
    padding: 20px;
    margin: 20px;
    font-family: 'Inconsolata', monospace;
    overflow: scroll;
    color: #e0ceed;
}

pre.ascii-header {
    background: none;
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

pre.ascii-header code {
    font-size: 16pt;
    background: #faf5fd;
    /* background: #faf5fd; */
    border: none;
    border-radius: 10px;
    padding: 1em;
}

.blogpost {
    margin-top: 10px;
    margin-bottom: 10px;
}

.blogpost .post-about {
    margin-top: -5px;
    font-size: .75em;
    color: #cfccd4;
}

.blogpost .title a {
    color: #ffffff;
}

.news-header {
    border-radius: 5px;
    border: 2px solid #2c2a2c;
    margin-left: 350px;
    margin-right: 350px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    background: #2c2a2c;
}

.news-header h3 {
    color: #f2d7f2;
    margin-top: 5px;
    margin-bottom: 3px;
}

.homepage-video-box {
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.homepage-video-box video {
    width: 800px;
    height: 450px;
    padding-bottom: 1em;
}

.homepage-news-items {
    list-style: none;
    padding-left: 2ch;
}

.homepage-news-items li {
    clear: left;
}


.news-feed-content {
    padding-left: 2ch;
    margin-bottom: 1em;
}

.news-feed-item-date {
    font-style: italic;
}

.news-feed-content p {
    margin-top: .5em;
    margin-bottom: .5em;
}

.consume-more-buttons {
    padding-left: 2ch;
}

video {
    outline: none!important;
}

.post-audio {
    margin-top: .5em;
    width: 100%;
}

hr.pre-follow-us {
    border-top: 1px dashed #3f3f3f;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
}

hr.pre-learn-more {
    border-top: 1px dashed #726d7a;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
}

.follow-us {
    text-align: center;
}

.family-entry {
    background: #423c4b;
    overflow: hidden;
    box-shadow: 0px 0px 3px #1d202b;
    border-radius: 5px;
    border: 2px solid #28242c;
    margin-bottom: 10px;
}

.family-entry .title-wrap {
    background: #221e2d;
    border-bottom: 2px solid #2b282f;
}

.family-entry h2 {
    margin: 0px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
    text-shadow: 0px 0px 2px #8f8997;
}

.family-entry-bodywrap {
    padding: 10px;
    font-size: 12pt;
    /* display: flex; */
    /* flex-direction: row; */
    /* flex-wrap: wrap; */
}

.family-entry-content p:first-child {
    margin-top: 0px;
}

.family-entry-content p:last-child {
    margin-bottom: 0px;
}

.family-portrait-wrap {
    float: left;
    margin-right: 10px;
    padding-bottom: 10px;
}

.family-portrait {
    border-radius: 8px;
    box-shadow: 0px 0px 2px #312d37;
}

.learn-more {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    font-size: 12pt;
    text-align: right;
}

.site-main-content img, .site-main-content video {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}

.site-main-content iframe {
    display: block;
    margin: auto;
}

.site-main-content iframe.wasm4 {
    display: block;
    margin: auto;
    width: 480px;
    aspect-ratio: 1;
    box-shadow: 0px 0px 3px #5d4e68;
    border-radius: 2px;
}

.gesso-rounded-offwhite {
    background: #fafafa;
    border-radius: 8px;
    padding: 10px;
}

img.team-member-portrait {
    width: 152px;
    height: 152px;
    object-fit: cover;
    border-radius: 50%;
}

img.partner {
  display: block;
  width: 100%;
  height: auto;
}

.blurb {
    font-size:100%;
    font-family: Arial, Helvetica, sans-serif;
}

figcaption {
    text-align: center;
    font-weight: bold;    
}

dt {
    font-weight: bold;
    font-size: 125%;
}

dd {
}

table {
    width:100%;
}

.supporters {
    border-collapse:separate; 
    border-spacing:1em;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 400px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -200px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
