img {
  max-width: 100%;
/*  height: auto;
  margin: 0 auto; */
  display: inline;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Roman.ttf") format("truetype");
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Italic.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}

body {
  margin: 0;
  background-color: #111214;
  font-family: 'Crimson';
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

/* icon, title, & navbar */
.page-title {
  margin: auto;
  background-color: #111214;
  position: sticky;
  top: 0;
  border-bottom:.1em solid;
  border-color: #111214;
  columns: 2;
  column-gap: 1em;
  height: auto;
  padding: 0;
  font-family: 'Crimson';
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-content: center;
  align-items: center;
  text-align:center;
}

.pt-c1 {
  box-sizing: border-box;
  grid-column-start:1;
  grid-column-end:1;
  background-color: #111214;
  width: 200px;
  float: left;
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pt-c2 {
  grid-column-start: 2;
  grid-column-end: 9;
  background-color: #e4e4d8;
  color: #111214;
  min-height: 150px;
  width: 100%;
  padding: 0;
  float: right;
  margin: 0;
  border: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align:center;
  align-content: center;
}

/* footer and columns */
.footer {
  display: grid; 
  grid-template-columns: repeat(6, 1fr) ;
  column-gap: 1em;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  flex-direction: row;
  background-color: #111214;
  border-top: 2em solid;
  border-bottom: 2em solid;
  border-color: #111214; 
  font-size: 11px;
  position: sticky;
  bottom: 0;
}

.footer div {
  max-height: 100%;
}

.box {
  border: 1px solid;
  border-color: #111214;
  background-color: #e4e4d8;
  color: #111214;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
}

.inner {
  width: auto;
  box-sizing: border-box;
  padding: 0.5em 1em;
}

.main wrapper {
  margin: 0;
  width: 100%;
}

.main {
  columns: 2;
  column-gap: 1em;
  width: 100%;
  margin: 0;
}

.single-column {
  columns: 1;
  min-width: 100%;
  margin: 1em auto;
}

/* color boxes */
.white, .orange1, .orange2, .orange3, .blue1, .blue2, .blue3 {
  border: 1px solid;
  border-color: #111214;
  padding: 0.5em 1em;
  min-height: 70%;
  text-align: center;
  align-content: center;
}

.white {
  margin-top: 25px;
  background-color: #e4e4d8;
  color: #111214;
}

.orange1 {
  background-color: #e5703a;
  color: #111214;
}

.orange2 {
  background-color: #e55439;
  color: #111214;
}

.orange3 {
  background-color: #e53238;
  color: #111214;
}

.blue1 {
  background-color: #3556ae;
  color: #e4e4d8;
}

.blue2 {
  background-color: #322c74;
  color: #e4e4d8;
}

.blue3 {
  background-color: #261d3b;
  color: #e4e4d8;
}

/* nav links */
.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
.links li {
  display: inline-block;
  }

.links li:before {
  content: "「 ";
  }
  
.links li:after {
  content: " 」 ∷ ";
  }
  
.links .last:after {
  content: " 」";
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }