@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
/* reset*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
}
.video embed,
.video object,
.video iframe {
	width: 100%;
	height: auto;
}
video {
	width: 90%;
	height: auto;
}
* {
  box-sizing: border-box;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 100%;
    color: #000;
}
h1 {
    text-align: center;
    margin: 2% 0;
}
p {
    line-height: 1.5;
    padding: 1%;
}
.container {
    width: 80%;
    margin: 1% auto;
}
.footer-text {
    text-align: center;
    font-size: 88%;
}
.centerit {
    text-align: center;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  margin: 2%;
}
.title {
    font-weight: 800;
}
hr.dots {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}
.letter-link {
    font-family: 'Lato', sans-serif;
    font-size: 200%;
    text-align: center;
    font-weight: 900;
    color: #FF0000;
}
.letter-link a:link {
    color: #FF0000;
}
.letter-link a:visited {
    color: #FF0000;
}
.letter-link a:hover {
    color: #FF4500;
}
/** LIGHTBOX MARKUP **/

.lightbox {
  /* Default to hidden */
  display: none;

  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* A bit of padding around image */
  padding: 1em;

  /* Translucent background */
  background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;

  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}